gnu: signify: Don't use unstable tarball.
* gnu/packages/crypto.scm (signify)[source]: Change to GIT-FETCH.
This commit is contained in:
parent
f99418e3f3
commit
a5006ede7f
|
@ -132,14 +132,15 @@ communication, encryption, decryption, signatures, etc.")
|
||||||
(package
|
(package
|
||||||
(name "signify")
|
(name "signify")
|
||||||
(version "24")
|
(version "24")
|
||||||
|
(home-page "https://github.com/aperezdc/signify")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/aperezdc/signify/"
|
(uri (git-reference (url home-page)
|
||||||
"archive/v" 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
|
||||||
"0594vyvkq176xxzaz9xbq8qs0xdnr8s9gkd1prblwpdvnzmw0xvc"))))
|
"0grdlrpxcflzmzzc30r8rvsmamvbsgqyni59flzzk4w5hpjh464w"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
;; TODO Build with libwaive (described in README.md), to implement something
|
;; TODO Build with libwaive (described in README.md), to implement something
|
||||||
;; like OpenBSD's pledge().
|
;; like OpenBSD's pledge().
|
||||||
|
@ -159,7 +160,6 @@ communication, encryption, decryption, signatures, etc.")
|
||||||
(description "The signify utility creates and verifies cryptographic
|
(description "The signify utility creates and verifies cryptographic
|
||||||
signatures using the elliptic curve Ed25519. This is a Linux port of the
|
signatures using the elliptic curve Ed25519. This is a Linux port of the
|
||||||
OpenBSD tool of the same name.")
|
OpenBSD tool of the same name.")
|
||||||
(home-page "https://github.com/aperezdc/signify")
|
|
||||||
;; This package includes third-party code that was originally released under
|
;; This package includes third-party code that was originally released under
|
||||||
;; various non-copyleft licenses. See the source files for clarification.
|
;; various non-copyleft licenses. See the source files for clarification.
|
||||||
(license (list license:bsd-3 license:bsd-4 license:expat license:isc
|
(license (list license:bsd-3 license:bsd-4 license:expat license:isc
|
||||||
|
|
Loading…
Reference in New Issue