diff options
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 1e8ed923bd..974aa14982 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -2553,7 +2553,9 @@ download times, and other distribution and storage costs.") (define-public quazip (package (name "quazip") - (version "1.4") + ;; When updating, change also the version in quazip-qt5, + ;; which shares the same source. + (version "1.5") (source (origin (method git-fetch) @@ -2562,7 +2564,7 @@ download times, and other distribution and storage costs.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1jsw4xm5wyaqcj1pma5zzd8f5xbgd5lcjh18ah3kg36xz5i69yi4")))) + (base32 "0ni1656g2xf0cspwjp645hhd2p4iaqki4z26xhkxz04l5nzsdrh0")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ;no test @@ -2590,7 +2592,7 @@ reading from and writing to ZIP archives.") (package (inherit quazip) (name "quazip-qt5") - (version "1.4") + (version "1.5") (inputs (list qtbase-5 zlib)))) (define-public zchunk |