gnu: emacs-elmacro: Update to 1.1.1.

* gnu/packages/emacs-xyz.scm (emacs-elmacro): Update to 1.1.1.
This commit is contained in:
Nicolas Goaziou 2021-02-17 19:21:36 +01:00
parent 4531181509
commit ebc968d56a
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -21969,29 +21969,28 @@ (define-public emacs-helm-notmuch
(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
(package
(name "emacs-elmacro")
(version "1.1.1")
(home-page "https://github.com/Silex/elmacro")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1x4wnsshf9h10mp51x92vs5rxw5had4gmw6zz4f53czx1ymcv16a"))))
(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+))))
(license license:gpl3+)))
(define-public emacs-transient
(let ((revision "1")