gnu: git-crypt: Don't use unstable tarball.

* gnu/packages/version-control.scm (git-crypt)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-30 15:47:38 +01:00
parent 0fe4601516
commit 09be6a5f12
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -577,14 +577,15 @@ (define-public git-crypt
(package (package
(name "git-crypt") (name "git-crypt")
(version "0.5.0") (version "0.5.0")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://github.com/AGWA/git-crypt" (method git-fetch)
"/archive/" version ".tar.gz")) (uri (git-reference
(file-name (string-append name "-" version ".tar.gz")) (url "https://github.com/AGWA/git-crypt.git")
(commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1x9209n3k49k998saadr2d0lmvs01smjinx7gzzyjdwj9l904sii"))))
"0454fdmgm5f3razkn8n03lfqm5zyzvr4r2528zmlxiwba9518l2i"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("git" ,git) `(("git" ,git)