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

60 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, pkg-config
, wafHook
, python3
, readline
, libxslt
, docbook-xsl-nons
, docbook_xml_dtd_45
2014-04-29 21:02:20 +01:00
}:
stdenv.mkDerivation rec {
pname = "tdb";
version = "1.4.3";
src = fetchurl {
url = "mirror://samba/tdb/${pname}-${version}.tar.gz";
2020-03-25 10:27:41 +00:00
sha256 = "06waz0k50c7v3chd08mzp2rv7w4k4q9isbxx3vhlfpx1vy9q61f8";
};
2020-03-25 10:27:41 +00:00
nativeBuildInputs = [
2020-10-03 23:55:03 +01:00
python3
pkg-config
wafHook
libxslt
docbook-xsl-nons
docbook_xml_dtd_45
2020-03-25 10:27:41 +00:00
];
2014-04-29 21:02:20 +01:00
buildInputs = [
python3
readline # required to build python
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"
];
2020-10-03 23:55:03 +01:00
# python-config from build Python gives incorrect values when cross-compiling.
# If python-config is not found, the build falls back to using the sysconfig
# module, which works correctly in all cases.
PYTHON_CONFIG = "/invalid";
meta = with 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.
'';
homepage = "https://tdb.samba.org/";
2014-04-29 21:02:20 +01:00
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}