gnu: emacs-pass: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-pass)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
c8ab5320e5
commit
82cf888315
|
@ -8856,15 +8856,15 @@ standard Unix password manager\").")
|
||||||
(package
|
(package
|
||||||
(name "emacs-pass")
|
(name "emacs-pass")
|
||||||
(version "1.8")
|
(version "1.8")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/NicolasPetton/pass/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/NicolasPetton/pass.git")
|
||||||
(sha256
|
(commit version)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0aiz90gklk0cb8n4v1s3l0mx6pp2b7f4k2c0fjpihwmga13yklwn"))
|
(sha256
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(base32 "05h4hacv3yygyjcjj004qbyqjpkl4pyhwgp25gsz8mw5c66l70cx"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-password-store" ,emacs-password-store)
|
`(("emacs-password-store" ,emacs-password-store)
|
||||||
|
|
Loading…
Reference in New Issue