guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit bf12716205c1b5507809e8c36476548e3d63fedf
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 14 19:34:00 2026 +0000

    gnu: go-github-com-datadog-zstd: Update to 1.5.7.
    
    * gnu/packages/golang-compression.scm (go-github-com-datadog-zstd): Update 
to 1.5.7.
    [inputs]: Remove list, zstd, and "lib".
    [propagated-inputs]: Add pkg-config and (list zstd "lib").
    [native-inputs]: Remove pkg-config.
    
    Change-Id: I061724fc1278ad4510592f598dd23c7e09afb9be
---
 gnu/packages/golang-compression.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/golang-compression.scm 
b/gnu/packages/golang-compression.scm
index b7cc22f60f..e6b810f4c9 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -159,7 +159,7 @@ to @url{https://pkg.go.dev/io/fs#FS, fs.FS}, but for tar 
files.")
 (define-public go-github-com-datadog-zstd
   (package
     (name "go-github-com-datadog-zstd")
-    (version "1.5.6")
+    (version "1.5.7")
     (source
      (origin
        (method git-fetch)
@@ -168,19 +168,19 @@ to @url{https://pkg.go.dev/io/fs#FS, fs.FS}, but for tar 
files.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0hri68jd5yh9kxy4bj2b4rfi7jz74zl20d4hk7rwcwykpgk90qid"))))
+        (base32 "0hm1blyymf1zhgid8f65s2bdd2qz4wiicpnxrv1b18xc8q7fv8hs"))))
     (build-system go-build-system)
     (arguments
      (list
-      ;; These flags need to be applied in the final application as well to
-      ;; build with system's libzstd,
+      ;; XXX: These flags need to be applied in the final application as well
+      ;; to build with system's libzstd.  Keep all inputs as propagated as
+      ;; well.
       #:build-flags #~(list "-tags" "external_libzstd")
       #:test-flags #~(list "-tags" "external_libzstd")
       #:import-path "github.com/DataDog/zstd"))
-    (native-inputs
-     (list pkg-config))
-    (inputs
-     (list (list zstd "lib")))
+    (propagated-inputs
+     (list pkg-config
+           (list zstd "lib")))
     (home-page "https://github.com/DataDog/zstd";)
     (synopsis "Zstd Golang wrapper")
     (description

Reply via email to