gnu: emacs-guix: Update to 0.5.2.3-a694fdb.
Fixes <https://bugs.gnu.org/44062>. * gnu/packages/emacs-xyz.scm (emacs-guix): Update to a694fdb. [inputs]: Use guile from guix. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
6760578c89
commit
f98e3adcd5
|
@ -2764,20 +2764,21 @@ type, for example: packages, buffers, files, etc.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-guix
|
(define-public emacs-guix
|
||||||
(let ((commit "58a840d0671091e3064e36244790ef8839da87d6")
|
(let* ((commit "a694fdbcedb6edd2239a31d326e475c763ee32f8")
|
||||||
(revision "2"))
|
(revision "3"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-guix")
|
(name "emacs-guix")
|
||||||
(version (git-version "0.5.2" revision commit))
|
(version (git-version "0.5.2" revision commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://gitlab.com/emacs-guix/emacs-guix")
|
;; TODO: Use the official version when it has a new home
|
||||||
|
(url "https://github.com/jsoo1/guix.el")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qnr5sixmvrhr9rinrhfy7sy20mikjvvwbdixwkbx30qpcdwgwj1"))))
|
"1pqw7zbgxzwpig4xr0izc3z8h80c72i6bl5yi12br0d7aq6dbkvj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
|
@ -2786,7 +2787,8 @@ type, for example: packages, buffers, files, etc.")
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("emacs" ,emacs-minimal)))
|
("emacs" ,emacs-minimal)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))
|
`(("guile"
|
||||||
|
,@(assoc-ref (package-native-inputs guix) "guile"))
|
||||||
("guix" ,guix)))
|
("guix" ,guix)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("geiser" ,emacs-geiser)
|
`(("geiser" ,emacs-geiser)
|
||||||
|
|
Reference in New Issue