nixpkgs/pkgs/tools/misc/yubico-piv-tool/default.nix
R. RyanTM 984c55f82d yubico-piv-tool: 1.5.0 -> 1.6.1 (#45531)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/yubico-piv-tool/versions.
2018-08-27 22:39:54 +02:00

34 lines
1.1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, openssl, pcsclite, check }:
stdenv.mkDerivation rec {
name = "yubico-piv-tool-1.6.1";
src = fetchurl {
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
sha256 = "10xgdc51xvszkxmsvqnbjs8ixxz7rfnfahh3wn8glllynmszbhwi";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl pcsclite check ];
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.
'';
maintainers = with maintainers; [ wkennington ];
license = licenses.bsd2;
platforms = platforms.all;
};
}