summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-12-22 23:21:53 +0900
committerAndreas Enge <andreas@enge.fr>2026-03-06 14:52:03 +0100
commit356234dc5f4f70aace50542f50bcda07378f8716 (patch)
treee898b47fd426cfb2ee7eb93e01b1880b200da483 /gnu
parenta6d7b44ccea13195776f8c20da22fd6deedd81d6 (diff)
gnu: gnutls: Enable zstd compression.
* gnu/packages/tls.scm [arguments] <#:configure-flags>: Add --with-zstd=link. [propagated-inputs]: Add zstd:lib. Change-Id: I7cfce764181eebe12a32019107061c88edaa877a
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/tls.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 81ecaf2ff24..6cdbbec9a87 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -240,6 +240,7 @@ living in the same process.")
;; 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
@@ -285,7 +286,7 @@ living in the same process.")
(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