mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: pass-git-helper: Don't use unstable tarball.
* gnu/packages/password-utils.scm (pass-git-helper)[source]: Download using git-fetch.
This commit is contained in:
parent
659204ff2c
commit
df58cc9c56
1 changed files with 6 additions and 4 deletions
|
@ -752,12 +752,14 @@ winner of the 2015 Password Hashing Competition.")
|
|||
(version "0.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/languitar/pass-git-helper/archive/release-"
|
||||
version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/languitar/pass-git-helper")
|
||||
(commit (string-append "release-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0lz5ncy44pz7z1j2nnyildx8sq33zi3xvg5nkwg25n11nasqh2xn"))))
|
||||
"0vyzmfzyr6ghaglr09px2q6k38zyv1hw25j14z7if7nncj1i4i5d"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
|
Loading…
Reference in a new issue