diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-15 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-15 02:00:18 +0200 |
commit | b247d7a46979c4ff63867de9243a186b6adaca7e (patch) | |
tree | 4f83a84ae04f1867117c9cb15a641d86959b73c1 | |
parent | gnu: pigz: Remove unused git input. (diff) | |
download | guix-b247d7a46979c4ff63867de9243a186b6adaca7e.tar.gz guix-b247d7a46979c4ff63867de9243a186b6adaca7e.tar.bz2 guix-b247d7a46979c4ff63867de9243a186b6adaca7e.tar.xz |
gnu: pigz: Update to 2.7.
* gnu/packages/compression.scm (pigz): Update to 2.7.
[arguments]: Run ‘make test’ rather than ‘tests’. The latter tests
the NOTHREAD build that's never installed, and broken.
[native-inputs]: Add which.
-rw-r--r-- | gnu/packages/compression.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 123be4b2f1..778cf55a51 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm | |||
@@ -980,14 +980,14 @@ byte-for-byte identical output.") | |||
980 | (define-public pigz | 980 | (define-public pigz |
981 | (package | 981 | (package |
982 | (name "pigz") | 982 | (name "pigz") |
983 | (version "2.6") | 983 | (version "2.7") |
984 | (source (origin | 984 | (source (origin |
985 | (method url-fetch) | 985 | (method url-fetch) |
986 | (uri (string-append "http://zlib.net/pigz/" | 986 | (uri (string-append "http://zlib.net/pigz/" |
987 | name "-" version ".tar.gz")) | 987 | name "-" version ".tar.gz")) |
988 | (sha256 | 988 | (sha256 |
989 | (base32 | 989 | (base32 |
990 | "0z9avc4mifwcpj3qdsf9m2rjw9jx03b2r9pj0c4xgla9fh6ppv9f")))) | 990 | "01y7n7lafp6maqnp4jrmasawnv67najh1bd7gjrmv3d08h1ydjdl")))) |
991 | (build-system gnu-build-system) | 991 | (build-system gnu-build-system) |
992 | (arguments | 992 | (arguments |
993 | `(#:phases | 993 | `(#:phases |
@@ -1004,7 +1004,8 @@ byte-for-byte identical output.") | |||
1004 | #t)))) | 1004 | #t)))) |
1005 | #:make-flags | 1005 | #:make-flags |
1006 | (list ,(string-append "CC=" (cc-for-target))) | 1006 | (list ,(string-append "CC=" (cc-for-target))) |
1007 | #:test-target "tests")) | 1007 | #:test-target "test")) |
1008 | (native-inputs (list which)) | ||
1008 | (inputs (list zlib)) | 1009 | (inputs (list zlib)) |
1009 | (home-page "https://zlib.net/pigz/") | 1010 | (home-page "https://zlib.net/pigz/") |
1010 | (synopsis "Parallel implementation of gzip") | 1011 | (synopsis "Parallel implementation of gzip") |