mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
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
1 changed files with 9 additions and 9 deletions
|
@ -8856,15 +8856,15 @@ (define-public emacs-pass
|
|||
(package
|
||||
(name "emacs-pass")
|
||||
(version "1.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/NicolasPetton/pass/archive/"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0aiz90gklk0cb8n4v1s3l0mx6pp2b7f4k2c0fjpihwmga13yklwn"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/NicolasPetton/pass.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "05h4hacv3yygyjcjj004qbyqjpkl4pyhwgp25gsz8mw5c66l70cx"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-password-store" ,emacs-password-store)
|
||||
|
|
Loading…
Reference in a new issue