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

pkcs11-helper: 1.21 -> 1.22

plus homepage refresh

authored by Renaud and committed by GitHub 39c219ca f1ec44ec

+5 -3
+5 -3
pkgs/development/libraries/pkcs11helper/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "pkcs11-helper-${version}"; 5 - version = "1.21"; 5 + version = "1.22"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "OpenSC"; 9 9 repo = "pkcs11-helper"; 10 10 rev = "${name}"; 11 - sha256 = "17a2cssycl7fh44xikmhszigx57vvn0h2sjsnmsy3772kfj796b1"; 11 + sha256 = "01v3zv6sr5phqhr2f21fl2rmcnmkp9518dkq82g1v2y9ysjksg7q"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 15 buildInputs = [ openssl ]; 16 16 17 + enableParallelBuilding = true; 18 + 17 19 meta = with stdenv.lib; { 18 - homepage = https://www.opensc-project.org/opensc/wiki/pkcs11-helper; 20 + homepage = https://github.com/OpenSC/pkcs11-helper; 19 21 license = with licenses; [ bsd3 gpl2 ]; 20 22 description = "Library that simplifies the interaction with PKCS#11 providers"; 21 23 platforms = platforms.unix;