Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

yubico-piv-tool: 1.4.4 -> 1.5.0

authored by Anton Schirg and committed by Bjørn Forsman 3ec3de2c 7550fd17

+4 -4
+4 -4
pkgs/tools/misc/yubico-piv-tool/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, openssl, pcsclite }: 2 3 stdenv.mkDerivation rec { 4 - name = "yubico-piv-tool-1.4.4"; 5 6 src = fetchurl { 7 url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz"; 8 - sha256 = "0s9pib3g4lmxw9rjjd5h3ad401150kb1wqrzf8w1bq79g0zsq3mb"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ]; 12 - buildInputs = [ openssl pcsclite ]; 13 14 configureFlags = [ "--with-backend=pcsc" ]; 15
··· 1 + { stdenv, fetchurl, pkgconfig, openssl, pcsclite, check }: 2 3 stdenv.mkDerivation rec { 4 + name = "yubico-piv-tool-1.5.0"; 5 6 src = fetchurl { 7 url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz"; 8 + sha256 = "1axa0lnky5gsc8yack6mpfbjh49z0czr1cv52gbgjnx2kcbpb0y1"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ]; 12 + buildInputs = [ openssl pcsclite check ]; 13 14 configureFlags = [ "--with-backend=pcsc" ]; 15