guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 934edac42f12e74419e283be1f43e1fc7a1d7316
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Dec 22 23:21:53 2024 +0900
gnu: gnutls: Enable zstd compression.
* gnu/packages/tls.scm [arguments] <#:configure-flags>: Add
--with-zstd=link.
[propagated-inputs]: Add zstd:lib.
Change-Id: I7cfce764181eebe12a32019107061c88edaa877a
---
gnu/packages/tls.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 5e8a5f2bd1..1e82d85853 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -273,6 +273,7 @@ API to make PKCS#11 implementations easier.")
;; due to its non-FHS nature and the lack of a global
;; ld.so.cache file.
"--with-zlib=link"
+ "--with-zstd=link"
;; GnuTLS doesn't consult any environment variables to specify
;; the location of the system-wide trust store. Instead it has a
;; configure-time option. Unless specified, its configure script
@@ -318,7 +319,7 @@ API to make PKCS#11 implementations easier.")
(inputs (list libunistring zlib))
(propagated-inputs
;; These are all in the 'Requires.private' field of gnutls.pc.
- (list libtasn1 libidn2 p11-kit nettle zlib))
+ (list libtasn1 libidn2 p11-kit nettle zlib `(,zstd "lib")))
(home-page "https://gnutls.org")
(synopsis "Transport layer security library")
(description