mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add emacs-elmacro.
* gnu/packages/emacs-xyz.scm (emacs-elmacro): New variable.
This commit is contained in:
parent
99d5e5df27
commit
4d0f20d91c
1 changed files with 25 additions and 0 deletions
|
@ -13532,3 +13532,28 @@ (define-public emacs-helm-notmuch
|
|||
displays as you type thanks to Helm, though @command{notmuch-search} does the
|
||||
real search.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-elmacro
|
||||
(let ((commit "89b9b0feabafd01fee48111d67131c4c9b5fed9a"))
|
||||
(package
|
||||
(name "emacs-elmacro")
|
||||
(version (git-version "1.1.0" "1" commit))
|
||||
(home-page "https://github.com/Silex/elmacro")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"06wkzafh6vbcjf0m3sl253mgcq32p8cdv7vsfmyx51baa36938ha"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-s" ,emacs-s)
|
||||
("emacs-dash" ,emacs-dash)))
|
||||
(synopsis "Convert keyboard macros to Emacs Lisp")
|
||||
(description
|
||||
"This package displays keyboard macros or latest interactive commands
|
||||
as Emacs Lisp.")
|
||||
(license license:gpl3+))))
|
||||
|
|
Loading…
Reference in a new issue