nixpkgs/pkgs/development/libraries/p11-kit/default.nix

43 lines
1010 B
Nix
Raw Normal View History

2017-08-01 16:22:22 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, libiconv
, libffi, libtasn1 }:
stdenv.mkDerivation rec {
2017-08-01 00:03:23 +00:00
name = "p11-kit-${version}";
version = "0.23.14";
2017-08-01 00:03:23 +00:00
src = fetchFromGitHub {
owner = "p11-glue";
repo = "p11-kit";
rev = version;
sha256 = "0zmrw1ciybhnxjlsfb07wnf11ak5vrmy8y8fnz3mwm8v3w8dzlvw";
};
outputs = [ "out" "dev"];
outputBin = "dev";
nativeBuildInputs = [ autoreconfHook which pkgconfig ];
2017-08-01 00:03:23 +00:00
buildInputs = [ libffi libtasn1 libiconv ];
autoreconfPhase = ''
NOCONFIGURE=1 ./autogen.sh
'';
2015-04-20 05:43:41 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--without-trust-paths"
];
2014-01-10 00:17:54 +00:00
2015-04-20 05:43:41 +00:00
installFlags = [ "exampledir=\${out}/etc/pkcs11" ];
2014-01-10 00:17:54 +00:00
doInstallCheck = false; # probably a bug in this derivation
enableParallelBuilding = true;
2015-04-20 05:43:41 +00:00
meta = with stdenv.lib; {
2016-05-07 21:06:56 +00:00
homepage = https://p11-glue.freedesktop.org/;
2015-04-20 05:43:41 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
2015-04-22 08:49:22 +00:00
license = licenses.mit;
};
}