diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-11-24 19:30:45 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-11-25 14:08:30 +0200 |
commit | 298180cdb28d85303b019c1132c5e66bf5173035 (patch) | |
tree | eb7fd842adb9ee1247940403d0f8fce170ace197 /gnu | |
parent | 898ac8e732cca10bde0717aac5b8255fe6a331ee (diff) | |
download | patches-298180cdb28d85303b019c1132c5e66bf5173035.tar patches-298180cdb28d85303b019c1132c5e66bf5173035.tar.gz |
gnu: unshield: Don't use unstable tarball.
* gnu/packages/compression.scm (unshield)[source]: Download using
git-fetch.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/compression.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index cb1ababca2..9275938858 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1302,13 +1302,14 @@ or junctions, and always follows hard links.") (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) |