40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, python, pkgconfig, readline, libxslt
|
|
, docbook_xsl, docbook_xml_dtd_42
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tdb-1.3.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/tdb/${name}.tar.gz";
|
|
sha256 = "0i1l38h0vyck6zkcj4fn2l03spadlmyr1qa1xpdp9dy2ccbm3s1r";
|
|
};
|
|
|
|
buildInputs = [
|
|
python pkgconfig readline libxslt docbook_xsl docbook_xml_dtd_42
|
|
];
|
|
|
|
preConfigure = ''
|
|
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--bundled-libraries=NONE"
|
|
"--builtin-libraries=replace"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The trivial database";
|
|
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.
|
|
'';
|
|
homepage = http://tdb.samba.org/;
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|