riemann_c_client: drop wolfSSL support

This commit is contained in:
Emily
2026-04-26 20:21:42 +01:00
parent f322bbe86c
commit 89d326f7a5
+1 -5
View File
@@ -7,8 +7,6 @@
pkg-config,
file,
protobufc,
withWolfSSL ? false,
wolfssl,
withGnuTLS ? false,
gnutls,
withJSON ? true,
@@ -45,12 +43,10 @@ stdenv.mkDerivation (finalAttrs: {
file
protobufc
]
++ lib.optional withWolfSSL wolfssl
++ lib.optional withGnuTLS gnutls
++ lib.optional withJSON json_c;
configureFlags =
[ ] ++ lib.optional withWolfSSL "--with-tls=wolfssl" ++ lib.optional withGnuTLS "--with-tls=gnutls";
configureFlags = [ ] ++ lib.optional withGnuTLS "--with-tls=gnutls";
doCheck = true;
enableParallelBuilding = true;