2019-03-28 20:15:55 +01:00
|
|
|
{ stdenv, fetchurl, wafHook, pkgconfig, readline, libxslt
|
|
|
|
, docbook_xsl, docbook_xml_dtd_42
|
2014-04-29 22:02:20 +02:00
|
|
|
}:
|
2010-02-10 12:28:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-12-07 18:22:07 +01:00
|
|
|
name = "tdb-1.3.18";
|
2010-02-10 12:28:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 22:29:27 +01:00
|
|
|
url = "mirror://samba/tdb/${name}.tar.gz";
|
2019-12-07 18:22:07 +01:00
|
|
|
sha256 = "1drnsdh1w0px35r0y7l7g59yvyr67mvcsdrli4wab0mwi07b8mn1";
|
2010-02-10 12:28:18 +01:00
|
|
|
};
|
|
|
|
|
2019-03-28 20:15:55 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2014-04-29 22:02:20 +02:00
|
|
|
buildInputs = [
|
2018-12-12 00:16:42 +01:00
|
|
|
readline libxslt docbook_xsl docbook_xml_dtd_42
|
2014-04-29 22:02:20 +02:00
|
|
|
];
|
2010-02-10 12:28:18 +01:00
|
|
|
|
2019-03-28 20:15:55 +01:00
|
|
|
wafPath = "buildtools/bin/waf";
|
2014-04-29 22:02:20 +02:00
|
|
|
|
2019-04-10 05:44:37 +02:00
|
|
|
wafConfigureFlags = [
|
2014-04-29 22:02:20 +02:00
|
|
|
"--bundled-libraries=NONE"
|
|
|
|
"--builtin-libraries=replace"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "The trivial database";
|
2018-12-12 00:16:42 +01:00
|
|
|
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.
|
|
|
|
'';
|
2018-06-27 22:12:57 +02:00
|
|
|
homepage = https://tdb.samba.org/;
|
2014-04-29 22:02:20 +02:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2010-02-10 12:28:18 +01:00
|
|
|
};
|
|
|
|
}
|