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

34 lines
1.1 KiB
Nix
Raw Normal View History

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 {
2017-12-13 00:29:29 +00:00
name = "yubico-piv-tool-1.5.0";
2014-10-28 22:35:47 +00:00
src = fetchurl {
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
2017-12-13 00:29:29 +00:00
sha256 = "1axa0lnky5gsc8yack6mpfbjh49z0czr1cv52gbgjnx2kcbpb0y1";
2014-10-28 22:35:47 +00: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/;
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
maintainers = with maintainers; [ wkennington ];
license = licenses.bsd2;
platforms = platforms.all;
};
}