mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
openconnect: re-enable p11kit
This commit is contained in:
parent
0da9833e62
commit
40696c3e6f
@ -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…
Reference in New Issue
Block a user