nixpkgs/pkgs/tools/misc/yubico-piv-tool/default.nix
R. RyanTM b249f2c2d9 yubico-piv-tool: 1.6.2 -> 1.7.0
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
2019-04-18 08:50:21 +02:00

33 lines
1.1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, openssl, pcsclite, check }:
stdenv.mkDerivation rec {
name = "yubico-piv-tool-1.7.0";
src = fetchurl {
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
sha256 = "0zzxh8p9p097zkh9b3prbnigxsc2wy1pj1r8f5ikli9i81z54a5l";
};
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.
'';
license = licenses.bsd2;
platforms = platforms.all;
};
}