nixpkgs/pkgs/development/libraries/tdb/default.nix

43 lines
1.0 KiB
Nix
Raw Normal View History

2020-03-25 10:27:41 +00:00
{ stdenv, fetchurl, pkgconfig
, wafHook, python3, readline
, libxslt, docbook_xsl, docbook_xml_dtd_45
2014-04-29 21:02:20 +01:00
}:
stdenv.mkDerivation rec {
2020-03-25 10:27:41 +00:00
name = "tdb-1.4.3";
src = fetchurl {
url = "mirror://samba/tdb/${name}.tar.gz";
2020-03-25 10:27:41 +00:00
sha256 = "06waz0k50c7v3chd08mzp2rv7w4k4q9isbxx3vhlfpx1vy9q61f8";
};
2020-03-25 10:27:41 +00:00
nativeBuildInputs = [
pkgconfig wafHook
libxslt docbook_xsl docbook_xml_dtd_45
];
2014-04-29 21:02:20 +01:00
buildInputs = [
2020-03-25 10:27:41 +00:00
python3 readline
2014-04-29 21:02:20 +01:00
];
wafPath = "buildtools/bin/waf";
2014-04-29 21:02:20 +01:00
wafConfigureFlags = [
2014-04-29 21:02:20 +01:00
"--bundled-libraries=NONE"
"--builtin-libraries=replace"
];
meta = with stdenv.lib; {
description = "The trivial database";
2018-12-11 23:16:42 +00: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 21:12:57 +01:00
homepage = https://tdb.samba.org/;
2014-04-29 21:02:20 +01:00
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}