1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-16 23:30:29 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2026-02-14 19:34:00 +00:00
committed by Andreas Enge
parent e9e9e3ac74
commit 5de19fdadc

View File

@@ -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