diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-06 00:50:48 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-06 01:44:56 +0200 |
commit | 84527724333d44c6b42a9b9d1e0f9f2b73d483bd (patch) | |
tree | 9471c681396ae50a5e1e93d9c2e2e42fd4e58771 /gnu/packages/compression.scm | |
parent | 12d56be31c1c1e8d754d96fec2b1d3e1be03a832 (diff) | |
download | guix-84527724333d44c6b42a9b9d1e0f9f2b73d483bd.tar guix-84527724333d44c6b42a9b9d1e0f9f2b73d483bd.tar.gz |
gnu: quazip: Update to 1.1.
* gnu/packages/compression.scm (quazip): Redefine as an heir to the…
(quazip-0): …new name of the previous package definition.
Adjust all packages with quazip as input to use quazip-0.
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 1fc5eb6522..e5641456d6 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -2310,7 +2310,7 @@ libraries by around 50%--70%, thus reducing disk space, network load times, download times, and other distribution and storage costs.") (license license:gpl2+))) -(define-public quazip +(define-public quazip-0 (package (name "quazip") (version "0.9.1") @@ -2347,6 +2347,21 @@ reading from and writing to ZIP archives. ") ;; distributed under zlib terms. (license (list license:lgpl2.1+ license:zlib)))) +(define-public quazip + (package + (inherit quazip-0) + (name "quazip") + (version "1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stachenov/quazip") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06srglrj6jvy5ngmidlgx03i0d5w91yhi7sf846wql00v8rvhc5h")))))) + (define-public zchunk (package (name "zchunk") |