about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/ntdb/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/ntdb/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/ntdb/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/ntdb/default.nix b/nixpkgs/pkgs/development/libraries/ntdb/default.nix
new file mode 100644
index 000000000000..021436516c22
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/ntdb/default.nix
@@ -0,0 +1,51 @@
+{ lib, stdenv
+, fetchurl
+, python2
+, python3
+, pkg-config
+, readline
+, gettext
+, libxslt
+, docbook-xsl-nons
+, docbook_xml_dtd_42
+, wafHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "ntdb";
+  version = "1.0";
+
+  src = fetchurl {
+    url = "mirror://samba/tdb/${pname}-${version}.tar.gz";
+    sha256 = "0jdzgrz5sr25k83yrw7wqb3r0yj1v04z4s3lhsmnr5z6n5ifhyl1";
+  };
+
+  nativeBuildInputs = [
+    pkg-config
+    gettext
+    libxslt
+    docbook-xsl-nons
+    docbook_xml_dtd_42
+    wafHook
+    python2 # For wafHook
+  ];
+
+  buildInputs = [
+    python3
+    readline # required to build python
+  ];
+
+  wafPath = "buildtools/bin/waf";
+
+  wafConfigureFlags = [
+    "--bundled-libraries=NONE"
+    "--builtin-libraries=replace,ccan"
+  ];
+
+  meta = with lib; {
+    description = "The not-so trivial database";
+    homepage = "https://tdb.samba.org/";
+    license = licenses.lgpl3Plus;
+    platforms = platforms.all;
+  };
+}