Commit 89d326f7 authored by Emily's avatar Emily
Browse files

riemann_c_client: drop wolfSSL support

parent f322bbe8
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -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;