4e51a466bd
yubico-piv-tool -> 0.1.6 yubikey-personalization -> 1.17.1 yubikey-personalization-gui-3 -> 3.1.20
23 lines
620 B
Nix
23 lines
620 B
Nix
{ stdenv, fetchurl, pkgconfig, openssl, pcsclite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "yubico-piv-tool-0.1.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
|
|
sha256 = "1fsr7wkbg2ff9igc3d8bfqijdxj88wpfnj7zlidzgzakj4b6bxzg";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig openssl pcsclite ];
|
|
|
|
configureFlags = [ "--with-backend=pcsc" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://developers.yubico.com/yubico-piv-tool/;
|
|
description = "";
|
|
maintainers = with maintainers; [ wkennington ];
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|