mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: unshield: Don't use unstable tarball.
* gnu/packages/compression.scm (unshield)[source]: Download using git-fetch.
This commit is contained in:
parent
898ac8e732
commit
298180cdb2
1 changed files with 6 additions and 5 deletions
|
@ -1302,13 +1302,14 @@ (define-public unshield
|
||||||
(name "unshield")
|
(name "unshield")
|
||||||
(version "1.4.3")
|
(version "1.4.3")
|
||||||
(source
|
(source
|
||||||
(origin (method url-fetch)
|
(origin (method git-fetch)
|
||||||
(uri (string-append "http://github.com/twogood/unshield/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "http://github.com/twogood/unshield.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1avv5c11jbmzwizq10pwvlh1dmyna8ccvpgacv95h4gbq26rg35a"))))
|
"19wn22vszhci8dfcixx5rliz7phx3lv5ablvhjlclvj75k2vsdqd"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)
|
`(("zlib" ,zlib)
|
||||||
|
|
Loading…
Reference in a new issue