2015-01-03 01:20:21 +00:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, readline, libxslt
|
2014-04-29 21:02:20 +01:00
|
|
|
, docbook_xsl, docbook_xml_dtd_42
|
|
|
|
}:
|
2010-02-10 11:28:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-28 01:14:35 +00:00
|
|
|
name = "tdb-1.3.15";
|
2010-02-10 11:28:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 21:29:27 +00:00
|
|
|
url = "mirror://samba/tdb/${name}.tar.gz";
|
2018-02-28 01:14:35 +00:00
|
|
|
sha256 = "0a37jhpij8wr4f4pjqdlwnffy2l6a2vkqdpz1bqxj6v06cwbz8dl";
|
2010-02-10 11:28:18 +00:00
|
|
|
};
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-04-29 21:02:20 +01:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
python readline libxslt docbook_xsl docbook_xml_dtd_42
|
2014-04-29 21:02:20 +01:00
|
|
|
];
|
2010-02-10 11:28:18 +00:00
|
|
|
|
2014-04-29 21:02:20 +01:00
|
|
|
preConfigure = ''
|
2015-01-03 01:20:21 +00:00
|
|
|
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
|
2014-04-29 21:02:20 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--bundled-libraries=NONE"
|
|
|
|
"--builtin-libraries=replace"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "The trivial database";
|
2010-02-10 11:28:18 +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;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.all;
|
2010-02-10 11:28:18 +00:00
|
|
|
};
|
|
|
|
}
|