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

38 lines
1,010 B
Nix
Raw Normal View History

{ stdenv, fetchurl, wafHook, pkgconfig, readline, libxslt
, docbook_xsl, docbook_xml_dtd_42
2014-04-29 22:02:20 +02:00
}:
stdenv.mkDerivation rec {
name = "tdb-1.3.16";
src = fetchurl {
url = "mirror://samba/tdb/${name}.tar.gz";
sha256 = "1ibcz466xwk1x6xvzlgzd5va4lyrjzm3rnjak29kkwk7cmhw4gva";
};
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
];
wafPath = "buildtools/bin/waf";
2014-04-29 22:02:20 +02:00
wafConfigureFlags = [
2014-04-29 22:02:20 +02:00
"--bundled-libraries=NONE"
"--builtin-libraries=replace"
];
meta = with stdenv.lib; {
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;
};
}