diff options
author | Federico Beffa <beffa@fbengineering.ch> | 2016-10-20 17:50:56 +0200 |
---|---|---|
committer | Federico Beffa <beffa@fbengineering.ch> | 2016-10-31 16:13:17 +0100 |
commit | 0fc06f3eba0acb67b2ba61b0810fb4bf34ab3daf (patch) | |
tree | 18b09435a4b62b6792c3f58bcb9029d9783c32bc /gnu/packages/emacs.scm | |
parent | 8f50634ba44d29a401ab9f6fc636be0299c7f28b (diff) | |
download | patches-0fc06f3eba0acb67b2ba61b0810fb4bf34ab3daf.tar patches-0fc06f3eba0acb67b2ba61b0810fb4bf34ab3daf.tar.gz |
gnu: Add emacs-el-search.
* gnu/packages/emacs.scm (emacs-el-search): New variable.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1f4035a61f..e5b420afff 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3338,3 +3338,27 @@ editing nginx config files.") (description "This library provides an implementation of streams for Emacs. Streams are implemented as delayed evaluation of cons cells.") (license license:gpl3+))) + +(define-public emacs-el-search + (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4") + (revision "1")) + (package + (name "emacs-el-search") + ;; No ufficial release. + (version (string-append "0.0-" revision "." (string-take commit 7))) + (home-page "https://github.com/emacsmirror/el-search") + (source + (origin + (method git-fetch) + (file-name (string-append name "-" version ".tar.gz")) + (uri (git-reference + (commit commit) + (url (string-append home-page ".git")))) + (sha256 + (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6")))) + (build-system emacs-build-system) + (inputs `(("emacs-stream" ,emacs-stream))) + (synopsis "Expression based interactive search for emacs-lisp-mode") + (description "This package provides expression based interactive search +procedures for emacs-lisp-mode.") + (license license:gpl3+)))) |