gnu: enchive: Update to 3.5.
* gnu/packages/crypto.scm (enchive): Update to 3.5. [source]: Replace url-fetch with git-fetch. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
27f8d98f8e
commit
bc587eb178
|
@ -852,15 +852,16 @@ cannot sign messages in OpenBSD format yet.")
|
||||||
(define-public enchive
|
(define-public enchive
|
||||||
(package
|
(package
|
||||||
(name "enchive")
|
(name "enchive")
|
||||||
(version "3.4")
|
(version "3.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/skeeto/" name "/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/skeeto/enchive")
|
||||||
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17hrxpp4cpn10bk48sfvfjc8hghky34agsnypam1v9f36kbalqfk"))
|
"0fdrfc5l42lj2bvmv9dmkmhmm7qiszwk7cmdvnqad3fs7652g0qa"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no check target '
|
'(#:tests? #f ; no check target '
|
||||||
|
|
Reference in New Issue