summary refs log tree commit diff
path: root/pkgs/development/libraries/ldb
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/ldb')
-rw-r--r--pkgs/development/libraries/ldb/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ldb/default.nix b/pkgs/development/libraries/ldb/default.nix
new file mode 100644
index 0000000000000..26748d50479a2
--- /dev/null
+++ b/pkgs/development/libraries/ldb/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, python27, pkgconfig, readline, gettext, tdb, talloc, tevent
+, popt, libxslt, docbook_xsl, docbook_xml_dtd_42
+, acl ? null, heimdal ? null, libaio ? null, libcap ? null, libgcrypt ? null
+, sasl ? null, pam ? null, zlib ? null, openldap ? null
+}:
+
+stdenv.mkDerivation rec {
+  name = "ldb-1.1.17";
+
+  src = fetchurl {
+    url = "http://samba.org/ftp/ldb/${name}.tar.gz";
+    sha256 = "1rmnppbk06aa1kfdrxi4xyjw2zzx54jqyz95dmqn754ys6m158xr";
+  };
+
+  buildInputs = [
+    python27 pkgconfig readline gettext tdb talloc tevent popt
+    libxslt docbook_xsl docbook_xml_dtd_42
+    acl heimdal libaio libcap libgcrypt sasl pam zlib openldap
+  ];
+
+  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 = "a LDAP-like embedded database";
+    homepage = http://ldb.samba.org/;
+    license = licenses.lgpl3Plus;
+    maintainers = with maintainers; [ wkennington ];
+    platforms = platforms.all;
+  };
+}