gnu: unshield: Don't use unstable tarball.

* gnu/packages/compression.scm (unshield)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-24 19:30:45 +02:00
parent 898ac8e732
commit 298180cdb2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1302,13 +1302,14 @@ (define-public unshield
(name "unshield")
(version "1.4.3")
(source
(origin (method url-fetch)
(uri (string-append "http://github.com/twogood/unshield/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(origin (method git-fetch)
(uri (git-reference
(url "http://github.com/twogood/unshield.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1avv5c11jbmzwizq10pwvlh1dmyna8ccvpgacv95h4gbq26rg35a"))))
"19wn22vszhci8dfcixx5rliz7phx3lv5ablvhjlclvj75k2vsdqd"))))
(build-system cmake-build-system)
(inputs
`(("zlib" ,zlib)