about summary refs log tree commit diff
path: root/pkgs/development/libraries/tevent
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-04-29 15:03:46 -0500
committerWilliam A. Kennington III <william@wkennington.com>2014-11-06 15:04:35 -0800
commit39d77d9d4475c9522dbbc81826d1ac4815a058d6 (patch)
tree442513c01dbc860a248531aeaf8df6d0e7f591fa /pkgs/development/libraries/tevent
parent59d3fd5acadbca49c6e0f45122d4b6f12c6e6a1a (diff)
tevent: Add package
Diffstat (limited to 'pkgs/development/libraries/tevent')
-rw-r--r--pkgs/development/libraries/tevent/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/libraries/tevent/default.nix b/pkgs/development/libraries/tevent/default.nix
new file mode 100644
index 0000000000000..e92ae2ecef1e5
--- /dev/null
+++ b/pkgs/development/libraries/tevent/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, python27, pkgconfig, readline, gettext, talloc
+, libxslt, docbook_xsl, docbook_xml_dtd_42
+, acl ? null, heimdal ? null, libaio ? null, libcap ? null, sasl ? null
+, pam ? null, zlib ? null, libgcrypt ? null
+}:
+
+stdenv.mkDerivation rec {
+  name = "tevent-0.9.22";
+
+  src = fetchurl {
+    url = "http://samba.org/ftp/tevent/${name}.tar.gz";
+    sha256 = "0myyi3lwsi6f3f0a5qw8rjpm2d5yf18pw4vljdwyi885l411sksl";
+  };
+
+  buildInputs = [
+    python27 pkgconfig readline gettext talloc libxslt docbook_xsl
+    docbook_xml_dtd_42
+    acl heimdal libaio libcap sasl pam zlib libgcrypt
+  ];
+
+  preConfigure = ''
+    sed -i 's,#!/usr/bin/env python,#!${python27}/bin/python,g' buildtools/bin/waf
+  '';
+
+  configureFlags = [
+    "--bundled-libraries=NONE"
+    "--builtin-libraries=replace"
+  ];
+
+  meta = with stdenv.lib; {
+    description = "an event system based on the talloc memory management library.";
+    homepage = http://tevent.samba.org/;
+    license = licenses.lgpl3Plus;
+    maintainers = with maintainers; [ wkennington ];
+    platforms = platforms.all;
+  };
+}