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

40 lines
1.1 KiB
Nix
Raw Normal View History

2015-01-03 01:20:21 +00:00
{ stdenv, fetchurl, python, pkgconfig, readline, libxslt
2014-04-29 20:02:20 +00:00
, docbook_xsl, docbook_xml_dtd_42
}:
stdenv.mkDerivation rec {
2016-09-19 13:23:50 +00:00
name = "tdb-1.3.11";
src = fetchurl {
url = "mirror://samba/tdb/${name}.tar.gz";
2016-09-19 13:23:50 +00:00
sha256 = "0i1l38h0vyck6zkcj4fn2l03spadlmyr1qa1xpdp9dy2ccbm3s1r";
};
2014-04-29 20:02:20 +00:00
buildInputs = [
2015-01-03 01:20:21 +00:00
python pkgconfig readline libxslt docbook_xsl docbook_xml_dtd_42
2014-04-29 20:02:20 +00:00
];
2014-04-29 20:02:20 +00: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 20:02:20 +00:00
'';
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/;
2014-04-29 20:02:20 +00:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}