openconnect: re-enable p11kit

main
K900 2 years ago committed by Alyssa Ross
parent 0da9833e62
commit 40696c3e6f
  1. 4
      pkgs/tools/networking/openconnect/common.nix

@ -6,6 +6,7 @@
, stdenv
, pkg-config
, gnutls
, p11-kit
, openssl
, useOpenSSL ? false
, gmp
@ -30,7 +31,8 @@ stdenv.mkDerivation rec {
];
buildInputs = [ gmp libxml2 stoken zlib (if useOpenSSL then openssl else gnutls) ]
++ lib.optional stdenv.isDarwin PCSC;
++ lib.optional stdenv.isDarwin PCSC
++ lib.optional stdenv.isLinux p11-kit;
nativeBuildInputs = [ pkg-config autoreconfHook ];
meta = with lib; {

Loading…
Cancel
Save