Loading pkgs/tools/networking/openconnect/common.nix +3 −3 Original line number Diff line number Diff line Loading @@ -21,7 +21,7 @@ , autoreconfHook }: stdenv.mkDerivation rec { stdenv.mkDerivation { pname = "openconnect"; inherit version src; Loading @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { "--without-openssl-version-check" ]; buildInputs = [ gmp libxml2 stoken zlib pcsclite (if useOpenSSL then openssl else gnutls) ] buildInputs = [ gmp libxml2 stoken zlib (if useOpenSSL then openssl else gnutls) ] ++ lib.optional stdenv.isDarwin PCSC ++ lib.optional stdenv.isLinux p11-kit ++ lib.optionals stdenv.isLinux [ p11-kit pcsclite ] ++ lib.optional useDefaultExternalBrowser xdg-utils; nativeBuildInputs = [ pkg-config autoreconfHook ]; Loading Loading
pkgs/tools/networking/openconnect/common.nix +3 −3 Original line number Diff line number Diff line Loading @@ -21,7 +21,7 @@ , autoreconfHook }: stdenv.mkDerivation rec { stdenv.mkDerivation { pname = "openconnect"; inherit version src; Loading @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { "--without-openssl-version-check" ]; buildInputs = [ gmp libxml2 stoken zlib pcsclite (if useOpenSSL then openssl else gnutls) ] buildInputs = [ gmp libxml2 stoken zlib (if useOpenSSL then openssl else gnutls) ] ++ lib.optional stdenv.isDarwin PCSC ++ lib.optional stdenv.isLinux p11-kit ++ lib.optionals stdenv.isLinux [ p11-kit pcsclite ] ++ lib.optional useDefaultExternalBrowser xdg-utils; nativeBuildInputs = [ pkg-config autoreconfHook ]; Loading