12 stdenv.mkDerivation rec {
17 url = "mirror://samba/tdb/${pname}-${version}.tar.gz";
18 sha256 = "06waz0k50c7v3chd08mzp2rv7w4k4q9isbxx3vhlfpx1vy9q61f8";
31 readline # required to build python
34 wafPath = "buildtools/bin/waf";
37 "--bundled-libraries=NONE"
38 "--builtin-libraries=replace"
42 description = "The trivial database";
44 TDB is a Trivial Database. In concept, it is very much like GDBM,
45 and BSD's DB except that it allows multiple simultaneous writers
46 and uses locking internally to keep writers from trampling on each
47 other. TDB is also extremely small.
49 homepage = "https://tdb.samba.org/";
50 license = licenses.lgpl3Plus;
51 platforms = platforms.all;