2022-02-21 09:12:06 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, openssl, check, pcsclite, PCSC, gengetopt, cmake
|
2019-07-02 07:16:04 +00:00
|
|
|
, withApplePCSC ? stdenv.isDarwin
|
|
|
|
}:
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-02 09:38:45 +00:00
|
|
|
pname = "yubico-piv-tool";
|
2022-02-21 09:12:06 +00:00
|
|
|
version = "2.2.1";
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-02 09:38:45 +00:00
|
|
|
url = "https://developers.yubico.com/yubico-piv-tool/Releases/yubico-piv-tool-${version}.tar.gz";
|
2022-02-21 09:12:06 +00:00
|
|
|
sha256 = "sha256-t+3k3cPW4x3mey4t3NMZsitAzC4Jc7mGbQUqdUSTsU4=";
|
2014-10-28 22:35:47 +00:00
|
|
|
};
|
|
|
|
|
2022-02-21 09:12:06 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake gengetopt ];
|
2019-07-02 07:16:04 +00:00
|
|
|
buildInputs = [ openssl check ]
|
|
|
|
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
|
2014-10-28 22:35:47 +00:00
|
|
|
|
2022-02-21 09:12:06 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DGENERATE_MAN_PAGES=OFF" # Use the man page generated at release time
|
|
|
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
|
|
"-DCMAKE_INSTALL_MANDIR=share/man"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
];
|
|
|
|
|
2019-07-02 07:16:04 +00: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 01:11:51 +00:00
|
|
|
homepage = "https://developers.yubico.com/yubico-piv-tool/";
|
2016-09-05 21:33:46 +00: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;
|
2022-04-28 00:56:44 +00:00
|
|
|
maintainers = with maintainers; [ viraptor ];
|
2014-10-28 22:35:47 +00:00
|
|
|
};
|
|
|
|
}
|