diff options
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 026d448ce1..38de46a874 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -910,7 +910,7 @@ This package allows you to create and extract such file systems.") (define-public squashfs-tools-ng (package (name "squashfs-tools-ng") - (version "1.1.2") + (version "1.1.3") (source (origin (method git-fetch) @@ -919,7 +919,7 @@ This package allows you to create and extract such file systems.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "13gx6mc57wjjnrpnkb74zi2wiqazz2q715y1zz7rff02wh1vb5k9")) + (base32 "12ipqmjp10574sz64ls8qbgzkxz5dcbzk0l2fxyh2yrrhnjp34mi")) (modules '((guix build utils))) (snippet '(begin @@ -2240,7 +2240,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") @@ -2277,6 +2277,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") @@ -2430,7 +2445,7 @@ possibly untrusted extraction shell script.") (define-public ncompress (package (name "ncompress") - (version "4.2.4.6") + (version "5.0") (source (origin (method git-fetch) (uri (git-reference @@ -2440,13 +2455,13 @@ possibly untrusted extraction shell script.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1a4yir1ilafz0nzxdwigj204j4yy2zljbc501nsaqqm3dxdap8zn")))) + "090kksxrlqnsdc76fzz2j2ajc98mhmfwyn163ca2ia9niqmlpcm0")))) (arguments - '(#:make-flags (list "CC=gcc" + `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) (string-append "BINDIR=" %output "/bin") (string-append "MANDIR=" %output "/share/man/man1")) #:phases (modify-phases %standard-phases - (delete 'configure)))) + (delete 'configure)))) ; no configure script (build-system gnu-build-system) (home-page "https://github.com/vapier/ncompress/") (synopsis "Original Lempel-Ziv compress/uncompress programs") |