nixpkgs/pkgs/tools/misc/yubico-piv-tool/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, openssl, check, pcsclite, PCSC
, 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 ];
buildInputs = [ openssl check ]
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
2014-10-28 22:35:47 +00:00
configureFlags = [ "--with-backend=${if withApplePCSC then "macscard" else "pcsc"}" ];
2014-10-28 22:35:47 +00:00
meta = with lib; {
homepage = "https://developers.yubico.com/yubico-piv-tool/";
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;
};
}