1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: gnutls: Enable zstd compression.

* gnu/packages/tls.scm [arguments] <#:configure-flags>: Add --with-zstd=link.
[propagated-inputs]: Add zstd:lib.

Change-Id: I7cfce764181eebe12a32019107061c88edaa877a
This commit is contained in:
Maxim Cournoyer
2024-12-22 23:21:53 +09:00
committed by Andreas Enge
parent a6d7b44cce
commit 356234dc5f

View File

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