mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: argon2: Don't use unstable tarball.
* gnu/packages/password-utils.scm (argon2)[source]: Download using git-fetch.
This commit is contained in:
parent
54bcc27fb5
commit
c600cf2a72
1 changed files with 6 additions and 6 deletions
|
@ -706,14 +706,14 @@ (define-public argon2
|
||||||
(version "20171227")
|
(version "20171227")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://github.com/P-H-C/phc-winner-argon2/archive/"
|
(url "https://github.com/P-H-C/phc-winner-argon2")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1n6w5y3va7lrcym7cxr0nikapldqm80wxjdns584bvplq5r03spa"))))
|
"1rzayv4ydxwb5fqyr1y8nz0wsb9r45mwl1wrq8hmikjrlqhhjn6f"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
|
|
Loading…
Reference in a new issue