mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
977a05cc3b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from p11-kit
43 lines
1,010 B
Nix
43 lines
1,010 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, libiconv
|
|
, libffi, libtasn1 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "p11-kit-${version}";
|
|
version = "0.23.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p11-glue";
|
|
repo = "p11-kit";
|
|
rev = version;
|
|
sha256 = "0zmrw1ciybhnxjlsfb07wnf11ak5vrmy8y8fnz3mwm8v3w8dzlvw";
|
|
};
|
|
|
|
outputs = [ "out" "dev"];
|
|
outputBin = "dev";
|
|
|
|
nativeBuildInputs = [ autoreconfHook which pkgconfig ];
|
|
buildInputs = [ libffi libtasn1 libiconv ];
|
|
|
|
autoreconfPhase = ''
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
"--without-trust-paths"
|
|
];
|
|
|
|
installFlags = [ "exampledir=\${out}/etc/pkcs11" ];
|
|
|
|
doInstallCheck = false; # probably a bug in this derivation
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://p11-glue.freedesktop.org/;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|