gnu: Add emacs-el-search.

* gnu/packages/emacs.scm (emacs-el-search): New variable.
This commit is contained in:
Federico Beffa 2016-10-20 17:50:56 +02:00
parent 8f50634ba4
commit 0fc06f3eba
No known key found for this signature in database
GPG Key ID: 58936E0E2F1B5A4C
1 changed files with 24 additions and 0 deletions

View File

@ -3338,3 +3338,27 @@ editing nginx config files.")
(description "This library provides an implementation of streams for Emacs. (description "This library provides an implementation of streams for Emacs.
Streams are implemented as delayed evaluation of cons cells.") Streams are implemented as delayed evaluation of cons cells.")
(license license:gpl3+))) (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+))))