yubico-piv-tool: support Apple PCSC, enable by default

This commit is contained in:
Andrew Childs 2019-07-02 16:16:04 +09:00
parent e8d00113e2
commit 86e3208ca3
2 changed files with 9 additions and 4 deletions

View file

@ -1,4 +1,6 @@
{ stdenv, fetchurl, pkgconfig, openssl, pcsclite, check }:
{ stdenv, fetchurl, pkgconfig, openssl, check, pcsclite, PCSC
, withApplePCSC ? stdenv.isDarwin
}:
stdenv.mkDerivation rec {
name = "yubico-piv-tool-1.7.0";
@ -9,9 +11,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl pcsclite check ];
buildInputs = [ openssl check ]
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
configureFlags = [ "--with-backend=pcsc" ];
configureFlags = [ "--with-backend=${if withApplePCSC then "macscard" else "pcsc"}" ];
meta = with stdenv.lib; {
homepage = https://developers.yubico.com/yubico-piv-tool/;

View file

@ -13825,7 +13825,9 @@ in
yubico-pam = callPackage ../development/libraries/yubico-pam { };
yubico-piv-tool = callPackage ../tools/misc/yubico-piv-tool { };
yubico-piv-tool = callPackage ../tools/misc/yubico-piv-tool {
inherit (darwin.apple_sdk.frameworks) PCSC;
};
yubikey-manager = callPackage ../tools/misc/yubikey-manager { };