gnutls: remove Guile bindings

The Guile bindings have been moved into its own repository.
This commit is contained in:
Gabriel Arazas 2023-04-20 22:32:10 +08:00
parent 6132a7001e
commit 39e2454c14

View file

@ -2,7 +2,6 @@
, perl, gmp, autoconf, automake, libidn2, libiconv , perl, gmp, autoconf, automake, libidn2, libiconv
, unbound, dns-root-data, gettext, util-linux , unbound, dns-root-data, gettext, util-linux
, cxxBindings ? !stdenv.hostPlatform.isStatic # tries to link libstdc++.so , cxxBindings ? !stdenv.hostPlatform.isStatic # tries to link libstdc++.so
, guileBindings ? config.gnutls.guile or false, guile
, tpmSupport ? false, trousers, which, nettools, libunistring , tpmSupport ? false, trousers, which, nettools, libunistring
, withP11-kit ? !stdenv.hostPlatform.isStatic, p11-kit , withP11-kit ? !stdenv.hostPlatform.isStatic, p11-kit
, Security # darwin Security.framework , Security # darwin Security.framework
@ -22,7 +21,6 @@
, samba , samba
}: }:
assert guileBindings -> guile != null;
let let
# XXX: Gnulib's `test-select' fails on FreeBSD: # XXX: Gnulib's `test-select' fails on FreeBSD:
@ -74,19 +72,13 @@ stdenv.mkDerivation rec {
"--with-unbound-root-key-file=${dns-root-data}/root.key" "--with-unbound-root-key-file=${dns-root-data}/root.key"
(lib.withFeature withP11-kit "p11-kit") (lib.withFeature withP11-kit "p11-kit")
(lib.enableFeature cxxBindings "cxx") (lib.enableFeature cxxBindings "cxx")
] ++ lib.optionals guileBindings [
"--enable-guile"
"--with-guile-site-dir=\${out}/share/guile/site"
"--with-guile-site-ccache-dir=\${out}/share/guile/site"
"--with-guile-extension-dir=\${out}/share/guile/site"
]; ];
enableParallelBuilding = true; enableParallelBuilding = true;
buildInputs = [ lzo lzip libtasn1 libidn2 zlib gmp libunistring unbound gettext libiconv ] buildInputs = [ lzo lzip libtasn1 libidn2 zlib gmp libunistring unbound gettext libiconv ]
++ lib.optional (withP11-kit) p11-kit ++ lib.optional (withP11-kit) p11-kit
++ lib.optional (tpmSupport && stdenv.isLinux) trousers ++ lib.optional (tpmSupport && stdenv.isLinux) trousers;
++ lib.optional guileBindings guile;
nativeBuildInputs = [ perl pkg-config ] nativeBuildInputs = [ perl pkg-config ]
++ lib.optionals doCheck [ which nettools util-linux ]; ++ lib.optionals doCheck [ which nettools util-linux ];