gnu: hstr: Don't use unstable tarball.

* gnu/packages/shellutils.scm (hstr)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-13 22:02:25 +02:00
parent d177ac2df6
commit 2bbda4f077
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -279,13 +279,14 @@ (define-public hstr
(name "hstr")
(version "2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/dvorka/" name "/archive/"
version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/dvorka/hstr.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0yk2008bl48hv0v3c90ngq4y45h3nxif2ik6s3l7kag1zs5yv4wd"))
(file-name (string-append name "-" version ".tar.gz"))))
"1y9vsfbg07gbic0daqy569d9pb9i1d07fym3q7a0a99hbng85s20"))))
(build-system gnu-build-system)
(arguments
`(#:phases