nixpkgs/pkgs/os-specific/linux/audit/default.nix

38 lines
987 B
Nix
Raw Normal View History

{
stdenv, buildPackages, fetchurl,
enablePython ? false, python ? null,
}:
assert enablePython -> python != null;
stdenv.mkDerivation rec {
2018-01-16 21:32:59 +00:00
name = "audit-2.8.2";
src = fetchurl {
url = "http://people.redhat.com/sgrubb/audit/${name}.tar.gz";
2018-01-16 21:32:59 +00:00
sha256 = "1fmw8whraz1q3y3z5mgdpgsa3wz6r3zq0kgsgbc9xvmgfwmrpdb7";
};
outputs = [ "bin" "dev" "out" "man" ];
2016-08-20 23:55:21 +01:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = stdenv.lib.optional enablePython python;
configureFlags = [
# z/OS plugin is not useful on Linux,
# and pulls in an extra openldap dependency otherwise
"--disable-zos-remote"
(if enablePython then "--with-python" else "--without-python")
];
enableParallelBuilding = true;
meta = {
description = "Audit Library";
homepage = http://people.redhat.com/sgrubb/audit/;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}