gnu: signify: Update to 26.
* gnu/packages/crypto.scm (signify): Update to 26. [source]: Change to URL-FETCH to get the shiny new release tarball.
This commit is contained in:
parent
9b7f721db9
commit
b23579d0da
|
@ -131,16 +131,15 @@ communication, encryption, decryption, signatures, etc.")
|
||||||
(define-public signify
|
(define-public signify
|
||||||
(package
|
(package
|
||||||
(name "signify")
|
(name "signify")
|
||||||
(version "25")
|
(version "26")
|
||||||
(home-page "https://github.com/aperezdc/signify")
|
(home-page "https://github.com/aperezdc/signify")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference (url home-page)
|
(uri (string-append "https://github.com/aperezdc/signify/releases"
|
||||||
(commit (string-append "v" version))))
|
"/download/v" version "/signify-" version ".tar.xz"))
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0zg0rffxwj2a71s1bllhrn491xsmirg9sshpq8f3vl25lv4c2cnq"))))
|
"16sl1yq5bbsads5q4a0fbrf31b0x8r1hi4wagl90nbrhrca98baw"))))
|
||||||
(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().
|
||||||
|
|
Loading…
Reference in New Issue