From 3f449b8ae67e3098fb42ad58f1cd038c8a7220c9 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 28 Nov 2013 03:09:28 -0600 Subject: Add audit 2.3.2 for the new libsemanage --- pkgs/os-specific/linux/audit/default.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/os-specific/linux/audit/default.nix (limited to 'pkgs/os-specific/linux/audit/default.nix') diff --git a/pkgs/os-specific/linux/audit/default.nix b/pkgs/os-specific/linux/audit/default.nix new file mode 100644 index 00000000000..a7ff782d69e --- /dev/null +++ b/pkgs/os-specific/linux/audit/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, openldap +, enablePython ? false, python ? null +}: + +assert enablePython -> python != null; + +stdenv.mkDerivation rec { + name = "audit-2.3.2"; + + src = fetchurl { + url = "http://people.redhat.com/sgrubb/audit/${name}.tar.gz"; + sha256 = "0a8x10wz0xfj0iq1wgjl6hdhxvq58cb3906vc687i21876sy0wl8"; + }; + + buildInputs = [ openldap ] + ++ stdenv.lib.optional enablePython python; + + configureFlags = '' + ${if enablePython then "--with-python" else "--without-python"} + ''; + + meta = { + description = "Audit Library"; + homepage = "http://people.redhat.com/sgrubb/audit/"; + license = "GPLv2"; + platforms = stdenv.lib.platforms.linux; + }; +} -- cgit 1.4.1