Skip to content

Commit

Permalink
Merge pull request #325955 from panicgh/openconnect-with-yubi
Browse files Browse the repository at this point in the history
openconnect: enable Yubikey support
  • Loading branch information
thiagokokada authored Jul 12, 2024
2 parents e3aa0f6 + 9e622dc commit d20388f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/tools/networking/openconnect/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
, libxml2
, stoken
, zlib
, pcsclite
, vpnc-scripts
, PCSC
, useDefaultExternalBrowser ? stdenv.isLinux && stdenv.buildPlatform == stdenv.hostPlatform # xdg-utils doesn't cross-compile
Expand All @@ -32,7 +33,7 @@ stdenv.mkDerivation rec {
"--without-openssl-version-check"
];

buildInputs = [ gmp libxml2 stoken zlib (if useOpenSSL then openssl else gnutls) ]
buildInputs = [ gmp libxml2 stoken zlib pcsclite (if useOpenSSL then openssl else gnutls) ]
++ lib.optional stdenv.isDarwin PCSC
++ lib.optional stdenv.isLinux p11-kit
++ lib.optional useDefaultExternalBrowser xdg-utils;
Expand Down

0 comments on commit d20388f

Please sign in to comment.