summary refs log tree commit diff
path: root/pkgs/os-specific/linux/audit
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2013-11-28 03:09:28 -0600
committerWilliam A. Kennington III <william@wkennington.com>2013-11-29 02:08:52 -0600
commit3f449b8ae67e3098fb42ad58f1cd038c8a7220c9 (patch)
treedb8f154bd6fc0c50e324497d214426f04d6ae95e /pkgs/os-specific/linux/audit
parent16dce6f28af57c509820d8faf77f21c616e7446a (diff)
downloadnixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.tar
nixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.tar.gz
nixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.tar.bz2
nixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.tar.lz
nixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.tar.xz
nixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.tar.zst
nixpkgs-3f449b8ae67e3098fb42ad58f1cd038c8a7220c9.zip
Add audit 2.3.2 for the new libsemanage
Diffstat (limited to 'pkgs/os-specific/linux/audit')
-rw-r--r--pkgs/os-specific/linux/audit/default.nix28
1 files changed, 28 insertions, 0 deletions
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;
+  };
+}