about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2017-11-12 22:41:42 +0100
committerGitHub <noreply@github.com>2017-11-12 22:41:42 +0100
commit39c219ca81ccf18add00d369a692d9aa421b130c (patch)
treeee3f2fb47c1a49612ac95154a47696821047e9c2 /pkgs/development/libraries
parentf1ec44ec943ddf49c8510d06f714cdffe8d1deaf (diff)
downloadnixlib-39c219ca81ccf18add00d369a692d9aa421b130c.tar
nixlib-39c219ca81ccf18add00d369a692d9aa421b130c.tar.gz
nixlib-39c219ca81ccf18add00d369a692d9aa421b130c.tar.bz2
nixlib-39c219ca81ccf18add00d369a692d9aa421b130c.tar.lz
nixlib-39c219ca81ccf18add00d369a692d9aa421b130c.tar.xz
nixlib-39c219ca81ccf18add00d369a692d9aa421b130c.tar.zst
nixlib-39c219ca81ccf18add00d369a692d9aa421b130c.zip
pkcs11-helper: 1.21 -> 1.22
plus homepage refresh
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/pkcs11helper/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/libraries/pkcs11helper/default.nix b/pkgs/development/libraries/pkcs11helper/default.nix
index 9d7d7552cfc7..1a1bb1800cf2 100644
--- a/pkgs/development/libraries/pkcs11helper/default.nix
+++ b/pkgs/development/libraries/pkcs11helper/default.nix
@@ -2,20 +2,22 @@
 
 stdenv.mkDerivation rec {
   name = "pkcs11-helper-${version}";
-  version = "1.21";
+  version = "1.22";
 
   src = fetchFromGitHub {
     owner = "OpenSC";
     repo = "pkcs11-helper";
     rev = "${name}";
-    sha256 = "17a2cssycl7fh44xikmhszigx57vvn0h2sjsnmsy3772kfj796b1";
+    sha256 = "01v3zv6sr5phqhr2f21fl2rmcnmkp9518dkq82g1v2y9ysjksg7q";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
   buildInputs = [ openssl ];
 
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
-    homepage = https://www.opensc-project.org/opensc/wiki/pkcs11-helper;
+    homepage = https://github.com/OpenSC/pkcs11-helper;
     license = with licenses; [ bsd3 gpl2 ];
     description = "Library that simplifies the interaction with PKCS#11 providers";
     platforms = platforms.unix;