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

40 lines
913 B
Nix
Raw Normal View History

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