2019-04-24 04:53:09 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, libtool, pkgconfig
|
|
|
|
, openssl }:
|
2010-01-09 22:22:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libp11";
|
2019-04-24 04:53:09 +01:00
|
|
|
version = "0.4.10";
|
2017-03-08 13:31:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenSC";
|
|
|
|
repo = "libp11";
|
2019-08-15 13:41:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
2019-04-24 04:53:09 +01:00
|
|
|
sha256 = "1m4aw45bqichhx7cn78d8l1r1v0ccvwzlfj09fay2l9rfic5jgfz";
|
2010-01-09 22:22:41 +00:00
|
|
|
};
|
2017-03-08 13:31:34 +00:00
|
|
|
|
2019-04-24 04:53:09 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-enginesdir=${placeholder "out"}/lib/engines"
|
|
|
|
];
|
2017-03-12 18:27:55 +00:00
|
|
|
|
2017-03-08 13:31:34 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libtool ];
|
2019-04-24 04:53:09 +01:00
|
|
|
|
2017-03-08 13:31:34 +00:00
|
|
|
buildInputs = [ openssl ];
|
2010-01-09 22:22:41 +00:00
|
|
|
|
2019-04-24 04:53:09 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-12 18:27:55 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-04-24 04:53:09 +01:00
|
|
|
description = "Small layer on top of PKCS#11 API to make PKCS#11 implementations easier";
|
2017-03-12 18:27:55 +00:00
|
|
|
homepage = https://github.com/OpenSC/libp11;
|
2017-03-18 18:41:23 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-03-12 18:27:55 +00:00
|
|
|
platforms = platforms.all;
|
2010-01-09 22:22:41 +00:00
|
|
|
};
|
|
|
|
}
|