mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 02:50:20 +01:00
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:
parent
0fe4601516
commit
09be6a5f12
1 changed files with 9 additions and 8 deletions
|
@ -577,14 +577,15 @@ write native speed custom Git applications in any language with bindings.")
|
||||||
(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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue