mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: emacs-magit-popup: Don't use unstable tarball.
* gnu/packages/emacs.scm (emacs-magit-popup)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
e1bf455cee
commit
f9fe94c1f6
1 changed files with 6 additions and 6 deletions
|
@ -581,14 +581,14 @@ (define-public emacs-magit-popup
|
||||||
(name "emacs-magit-popup")
|
(name "emacs-magit-popup")
|
||||||
(version "2.12.4")
|
(version "2.12.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/magit/magit-popup/archive/v"
|
(url "https://github.com/magit/magit-popup.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0pkg95ssdp4biznmgc2bvf74y4ihws8902zz5437zsfhb8p6f3kb"))))
|
"08952nzn0cb6gxscqyiljk4fq2zxjvr3ism0lvgw0gs9hl5phiwx"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue