50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
|
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig, which
|
||
|
, gettext, libffi, libiconv, libtasn1
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "p11-kit";
|
||
|
version = "0.23.20";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "p11-glue";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "00xxhzgd7cpin9nzwrrzykvhjwqg5l45p0cq2gv68y3sxq2p9q6y";
|
||
|
};
|
||
|
|
||
|
outputs = [ "out" "dev"];
|
||
|
outputBin = "dev";
|
||
|
|
||
|
nativeBuildInputs = [ autoreconfHook pkgconfig which ];
|
||
|
buildInputs = [ gettext libffi libiconv libtasn1 ];
|
||
|
|
||
|
autoreconfPhase = ''
|
||
|
NOCONFIGURE=1 ./autogen.sh
|
||
|
'';
|
||
|
|
||
|
configureFlags = [
|
||
|
"--sysconfdir=/etc"
|
||
|
"--localstatedir=/var"
|
||
|
"--without-trust-paths"
|
||
|
]; # TODO: store trust anchors in a directory common to Nix and NixOS
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
doCheck = !stdenv.isDarwin;
|
||
|
|
||
|
installFlags = [ "exampledir=\${out}/etc/pkcs11" ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
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.
|
||
|
'';
|
||
|
homepage = "https://p11-glue.github.io/p11-glue/p11-kit.html";
|
||
|
platforms = platforms.all;
|
||
|
license = licenses.bsd3;
|
||
|
};
|
||
|
}
|