2017-12-13 00:29:29 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, pcsclite, check }:
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-16 18:58:53 +01:00
|
|
|
name = "yubico-piv-tool-1.7.0";
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
|
2019-04-16 18:58:53 +01:00
|
|
|
sha256 = "0zzxh8p9p097zkh9b3prbnigxsc2wy1pj1r8f5ikli9i81z54a5l";
|
2014-10-28 22:35:47 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-12-13 00:29:29 +00:00
|
|
|
buildInputs = [ openssl pcsclite check ];
|
2014-10-28 22:35:47 +00:00
|
|
|
|
|
|
|
configureFlags = [ "--with-backend=pcsc" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|