diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 18:54:58 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 20:17:08 +0300 |
commit | 53d4090b0eb0f4ecbfc147ac1dbad3ec3c85d76c (patch) | |
tree | 536cca930a8e3f2fa771329cd4ac748e17534844 | |
parent | 707ff55502b3710a87ddce367aa1fa2d14b46089 (diff) |
gnu: Add emacs-list-utils.
* gnu/packages/emacs.scm (emacs-list-utils): New public variable.
-rw-r--r-- | gnu/packages/emacs.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index c818e69bb1..f217001de6 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -8297,3 +8297,22 @@ arXiv, Google Scholar, Library of Congress, etc. (description "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.") (license license:gpl3+))) + +(define-public emacs-list-utils + (package + (name "emacs-list-utils") + (version "0.4.4") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/rolandwalker/list-utils/archive/" + "v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p")))) + (build-system emacs-build-system) + (home-page "https://github.com/rolandwalker/list-utils") + (synopsis "List-manipulation utility functions") + (description "This package provides a list manipulation library for Emacs.") + (license license:gpl3+))) |