aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/pkcs11helper
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-05-20 23:12:21 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-05-20 23:13:40 +0200
commitec65563e2c23be200aaea85c492711c6b57da416 (patch)
tree262dab69e2286c79e00b3b06ed737cb2453a117c /pkgs/development/libraries/pkcs11helper
parent610b499fef05df0c207843807a268b6bccae4f2b (diff)
Adding meo: Multiple Eyepairs Only
I also add the pkcs11helper it needs.
Diffstat (limited to 'pkgs/development/libraries/pkcs11helper')
-rw-r--r--pkgs/development/libraries/pkcs11helper/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/pkcs11helper/default.nix b/pkgs/development/libraries/pkcs11helper/default.nix
new file mode 100644
index 000000000000..5443df89704d
--- /dev/null
+++ b/pkgs/development/libraries/pkcs11helper/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, openssl, autoconf, automake, libtool }:
+
+let
+ rev = "5d412bad60";
+in
+stdenv.mkDerivation rec {
+ name = "pkcs11-helper-20121123-${rev}";
+
+ src = fetchurl {
+ url = "https://github.com/alonbl/pkcs11-helper/tarball/${rev}";
+ name = "${name}.tar.gz";
+ sha256 = "1mih6mha39yr5s5m18lg4854qc105asgnwmjw7f95kgmzni62kxp";
+ };
+
+ preConfigure = "autoreconf -vfi";
+
+ buildInputs = [ pkgconfig openssl autoconf automake libtool ];
+
+ meta = {
+ homepage = https://www.opensc-project.org/opensc/wiki/pkcs11-helper;
+ license = [ "BSD" "GPLv2" ];
+ description = "Library that simplifies the interaction with PKCS#11 providers";
+ };
+}