janneke pushed a commit to branch core-packages-team
in repository guix.
commit 2637e18bfaf08051eaf11315a76bc6701865528f
Author: Zheng Junjie <[email protected]>
AuthorDate: Fri Feb 7 11:38:15 2025 +0800
gnu: zstd: Update to 1.5.6.
* gnu/packages/compression.scm (zstd): Update to 1.5.6
(zstd-1.5.6): Remove variable.
(pzstd): Inherit from zstd.
Change-Id: If0020d61c5516222f6a80bdc7b41c19732f359e1
---
gnu/packages/compression.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 85a1e7178f..917182e906 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -41,7 +41,7 @@
;;; Copyright © 2024 Vinicius Monego <[email protected]>
;;; Copyright © 2024 David Elsing <[email protected]>
;;; Copyright © 2024 Artyom V. Poptsov <[email protected]>
-;;; Copyright © 2024 Zheng Junjie <[email protected]>
+;;; Copyright © 2024, 2025 Zheng Junjie <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1763,14 +1763,14 @@ or junctions, and always follows hard links.")
(define-public zstd
(package
(name "zstd")
- (version "1.5.2")
+ (version "1.5.6")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/facebook/zstd/releases/download/"
"v" version "/zstd-" version ".tar.gz"))
(sha256
- (base32 "1l1zm1imcc2ixayykyh4y421shdj3pzp7g2xm2k2js8jmipxahkw"))))
+ (base32 "1h83si7s70jy7mcy0mv1c9mbkz66qqpawxs0zkmc3b1ayinf0acc"))))
(build-system gnu-build-system)
(outputs '("out" ;1.5MiB executables and documentation
"lib" ;1.2MiB shared library and headers
@@ -1807,7 +1807,7 @@ or junctions, and always follows hard links.")
(rename-file (string-append shared-libs "/libzstd.a")
(string-append static-libs
"/libzstd_static.lib"))
(delete-file-recursively
- (string-append shared-libs "/pkgconfig"))
+ (string-append shared-libs "/pkgconfig"))
;; no binary for interpreter `sh' found in $PATH
(delete-file (string-append out "/bin/zstdgrep"))
(delete-file (string-append out "/bin/zstdless"))
@@ -1885,12 +1885,12 @@ speed.")
(outputs '("out"))
(inputs
`(,@(if (%current-target-system)
- `(("googletest" ,googletest))
- '())))
+ `(("googletest" ,googletest))
+ '())))
(native-inputs
`(,@(if (%current-system)
- `(("googletest" ,googletest))
- '())))
+ `(("googletest" ,googletest))
+ '())))
(arguments
`(#:phases
(modify-phases %standard-phases