Adding meo: Multiple Eyepairs Only
I also add the pkcs11helper it needs.
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user