2019-05-13 22:28:31 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig, which
|
|
|
|
, gettext, libffi, libiconv, libtasn1
|
|
|
|
}:
|
2011-11-07 16:48:14 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-13 22:28:31 +01:00
|
|
|
pname = "p11-kit";
|
2020-08-24 03:37:22 +01:00
|
|
|
version = "0.23.21";
|
2011-11-07 16:48:14 +00:00
|
|
|
|
2017-08-01 01:03:23 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "p11-glue";
|
2019-05-13 22:28:31 +01:00
|
|
|
repo = pname;
|
2017-08-01 01:03:23 +01:00
|
|
|
rev = version;
|
2020-08-24 03:37:22 +01:00
|
|
|
sha256 = "1w24brn8j3vwfp07p2hldw2ci06pk1cx1dvjk8jjxkccp20fk958";
|
2011-11-07 16:48:14 +00:00
|
|
|
};
|
|
|
|
|
2017-09-19 21:24:36 +01:00
|
|
|
outputs = [ "out" "dev"];
|
2015-10-07 21:36:11 +01:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2020-08-31 20:28:42 +01:00
|
|
|
# for cross platform builds of p11-kit, libtasn1 in nativeBuildInputs
|
|
|
|
# provides the asn1Parser binary on the hostPlatform needed for building.
|
|
|
|
# at the same time, libtasn1 in buildInputs provides the libasn1 library
|
|
|
|
# to link against for the target platform.
|
|
|
|
# hence, libtasn1 is required in both native and build inputs.
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig which libtasn1 ];
|
2019-05-13 22:28:31 +01:00
|
|
|
buildInputs = [ gettext libffi libiconv libtasn1 ];
|
2017-08-01 01:03:23 +01:00
|
|
|
|
|
|
|
autoreconfPhase = ''
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
'';
|
2011-11-07 16:48:14 +00:00
|
|
|
|
2015-04-20 06:43:41 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2020-04-25 17:27:34 +01:00
|
|
|
"--with-trust-paths=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
];
|
2014-01-10 00:17:54 +00:00
|
|
|
|
2018-06-02 04:14:27 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-04-25 04:20:18 +01:00
|
|
|
|
2019-06-04 01:21:56 +01:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2019-05-13 22:28:31 +01:00
|
|
|
|
2020-04-25 17:27:34 +01:00
|
|
|
installFlags = [
|
|
|
|
"exampledir=${placeholder "out"}/etc/pkcs11"
|
|
|
|
];
|
2019-05-13 22:28:31 +01:00
|
|
|
|
2015-04-20 06:43:41 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-05-13 22:28:31 +01:00
|
|
|
description = "Library for loading and sharing PKCS#11 modules";
|
|
|
|
longDescription = ''
|
|
|
|
Provides a way to load and enumerate PKCS#11 modules.
|
|
|
|
Provides a standard configuration setup for installing
|
|
|
|
PKCS#11 modules in such a way that they're discoverable.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://p11-glue.github.io/p11-glue/p11-kit.html";
|
2015-04-20 06:43:41 +01:00
|
|
|
platforms = platforms.all;
|
2019-05-13 22:28:31 +01:00
|
|
|
license = licenses.bsd3;
|
2011-11-07 16:48:14 +00:00
|
|
|
};
|
|
|
|
}
|