2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, openssl, check, pcsclite, PCSC
|
2019-07-02 08:16:04 +01:00
|
|
|
, withApplePCSC ? stdenv.isDarwin
|
|
|
|
}:
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-04 23:44:36 +00:00
|
|
|
name = "yubico-piv-tool-2.0.0";
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
|
2020-02-04 23:44:36 +00:00
|
|
|
sha256 = "124lhlim05gw32ydjh1yawqbnx6wdllz1ir9j00j09wji3m11rfs";
|
2014-10-28 22:35:47 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-07-02 08:16:04 +01:00
|
|
|
buildInputs = [ openssl check ]
|
|
|
|
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
|
2014-10-28 22:35:47 +00:00
|
|
|
|
2019-07-02 08:16:04 +01:00
|
|
|
configureFlags = [ "--with-backend=${if withApplePCSC then "macscard" else "pcsc"}" ];
|
2014-10-28 22:35:47 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://developers.yubico.com/yubico-piv-tool/";
|
2016-09-05 22:33:46 +01:00
|
|
|
description = ''
|
|
|
|
Used for interacting with the Privilege and Identification Card (PIV)
|
|
|
|
application on a YubiKey
|
|
|
|
'';
|
|
|
|
longDescription = ''
|
|
|
|
The Yubico PIV tool is used for interacting with the Privilege and
|
|
|
|
Identification Card (PIV) application on a YubiKey.
|
|
|
|
With it you may generate keys on the device, importing keys and
|
|
|
|
certificates, and create certificate requests, and other operations.
|
|
|
|
A shared library and a command-line tool is included.
|
|
|
|
'';
|
2014-10-28 22:35:47 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|