about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/tdb/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/tdb/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/tdb/default.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/tdb/default.nix b/nixpkgs/pkgs/development/libraries/tdb/default.nix
new file mode 100644
index 000000000000..658bdb2f9d5d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/tdb/default.nix
@@ -0,0 +1,53 @@
+{ lib, stdenv
+, fetchurl
+, pkg-config
+, wafHook
+, python3
+, readline
+, libxslt
+, docbook-xsl-nons
+, docbook_xml_dtd_45
+}:
+
+stdenv.mkDerivation rec {
+  pname = "tdb";
+  version = "1.4.3";
+
+  src = fetchurl {
+    url = "mirror://samba/tdb/${pname}-${version}.tar.gz";
+    sha256 = "06waz0k50c7v3chd08mzp2rv7w4k4q9isbxx3vhlfpx1vy9q61f8";
+  };
+
+  nativeBuildInputs = [
+    pkg-config
+    wafHook
+    libxslt
+    docbook-xsl-nons
+    docbook_xml_dtd_45
+  ];
+
+  buildInputs = [
+    python3
+    readline # required to build python
+  ];
+
+  wafPath = "buildtools/bin/waf";
+
+  wafConfigureFlags = [
+    "--bundled-libraries=NONE"
+    "--builtin-libraries=replace"
+  ];
+
+  meta = with lib; {
+    description = "The trivial database";
+    longDescription = ''
+      TDB is a Trivial Database. In concept, it is very much like GDBM,
+      and BSD's DB except that it allows multiple simultaneous writers
+      and uses locking internally to keep writers from trampling on each
+      other. TDB is also extremely small.
+    '';
+    homepage = "https://tdb.samba.org/";
+    license = licenses.lgpl3Plus;
+    platforms = platforms.all;
+  };
+}