Merge pull request #161995 from K900/openconnect-p11kit

This commit is contained in:
Sandro
2022-03-07 17:53:42 +01:00
committed by GitHub
@@ -4,6 +4,7 @@
, pkg-config
, openssl ? null
, gnutls ? null
, p11-kit
, gmp
, libxml2
, stoken
@@ -42,7 +43,8 @@ stdenv.mkDerivation rec {
];
buildInputs = [ openssl gnutls gmp libxml2 stoken zlib ]
++ lib.optional stdenv.isDarwin PCSC;
++ lib.optional stdenv.isDarwin PCSC
++ lib.optional stdenv.isLinux p11-kit;
nativeBuildInputs = [ pkg-config ]
++ lib.optional head autoreconfHook;