about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/ldb
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/ldb')
-rw-r--r--nixpkgs/pkgs/development/libraries/ldb/default.nix63
1 files changed, 63 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/ldb/default.nix b/nixpkgs/pkgs/development/libraries/ldb/default.nix
new file mode 100644
index 000000000000..702738fdfc04
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/ldb/default.nix
@@ -0,0 +1,63 @@
+{ stdenv
+, fetchurl
+, python3
+, pkg-config
+, readline
+, tdb
+, talloc
+, tevent
+, popt
+, libxslt
+, docbook-xsl-nons
+, docbook_xml_dtd_42
+, cmocka
+, wafHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "ldb";
+  version = "2.1.2";
+
+  src = fetchurl {
+    url = "mirror://samba/ldb/${pname}-${version}.tar.gz";
+    sha256 = "0x6yr14znp42b92i7br4wxfjri6i689dsifzz9kbyzvn558a16b4";
+  };
+
+  outputs = [ "out" "dev" ];
+
+  nativeBuildInputs = [
+    pkg-config
+    python3
+    wafHook
+    libxslt
+    docbook-xsl-nons
+    docbook_xml_dtd_42
+  ];
+
+  buildInputs = [
+    python3
+    readline # required to build python
+    tdb
+    talloc
+    tevent
+    popt
+    cmocka
+  ];
+
+  wafPath = "buildtools/bin/waf";
+
+  wafConfigureFlags = [
+    "--bundled-libraries=NONE"
+    "--builtin-libraries=replace"
+    "--without-ldb-lmdb"
+  ];
+
+  stripDebugList = [ "bin" "lib" "modules" ];
+
+  meta = with stdenv.lib; {
+    description = "A LDAP-like embedded database";
+    homepage = "https://ldb.samba.org/";
+    license = licenses.lgpl3Plus;
+    platforms = platforms.all;
+  };
+}