gnu: Add emacs-crux.

* gnu/packages/emacs.scm (emacs-crux): New public variable.
master
Oleg Pykhalov 2018-05-02 18:58:57 +03:00
parent 1bd3400d8c
commit 08ff4fd1b1
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 24 additions and 0 deletions

View File

@ -8661,3 +8661,27 @@ continue.")
dumb text search, @code{elisp-refs} actually parses the code, so it's never
confused by comments or @code{foo-bar} matching @code{foo}.")
(license license:gpl3+)))
(define-public emacs-crux
(let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
(revision "1"))
(package
(name "emacs-crux")
(version (string-append "0.3.0" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bbatsov/crux.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
(build-system emacs-build-system)
(home-page "https://github.com/bbatsov/crux")
(synopsis "Collection of useful functions for Emacs")
(description
"@code{crux} provides a collection of useful functions for Emacs.")
(license license:gpl3+))))