2020-03-31 04:44:49 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, wafHook
|
2020-03-31 04:47:34 +02:00
|
|
|
, python3
|
2020-03-31 04:44:49 +02:00
|
|
|
, readline
|
|
|
|
, libxslt
|
|
|
|
, docbook-xsl-nons
|
|
|
|
, docbook_xml_dtd_45
|
2014-04-29 22:02:20 +02:00
|
|
|
}:
|
2010-02-10 12:28:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-03-31 04:44:49 +02:00
|
|
|
pname = "tdb";
|
|
|
|
version = "1.4.3";
|
2010-02-10 12:28:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 04:44:49 +02:00
|
|
|
url = "mirror://samba/tdb/${pname}-${version}.tar.gz";
|
2020-03-25 11:27:41 +01:00
|
|
|
sha256 = "06waz0k50c7v3chd08mzp2rv7w4k4q9isbxx3vhlfpx1vy9q61f8";
|
2010-02-10 12:28:18 +01:00
|
|
|
};
|
|
|
|
|
2020-03-25 11:27:41 +01:00
|
|
|
nativeBuildInputs = [
|
2020-03-31 04:44:49 +02:00
|
|
|
pkg-config
|
|
|
|
wafHook
|
|
|
|
libxslt
|
|
|
|
docbook-xsl-nons
|
|
|
|
docbook_xml_dtd_45
|
2020-03-25 11:27:41 +01:00
|
|
|
];
|
|
|
|
|
2014-04-29 22:02:20 +02:00
|
|
|
buildInputs = [
|
2020-03-31 04:47:34 +02:00
|
|
|
python3
|
2020-03-31 04:44:49 +02:00
|
|
|
readline # required to build python
|
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.
|
|
|
|
'';
|
2020-03-31 04:44:49 +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
|
|
|
};
|
|
|
|
}
|