nixpkgs/pkgs/development/libraries/ntdb/default.nix
Jörg Thalheim b5c1deca8a
treewide: remove wkennington as maintainer
He prefers to contribute to his own nixpkgs fork triton.
Since he is still marked as maintainer in many packages
this leaves the wrong impression he still maintains those.
2019-01-26 10:05:32 +00:00

34 lines
770 B
Nix

{ stdenv, fetchurl, python, pkgconfig, readline, gettext, libxslt
, docbook_xsl, docbook_xml_dtd_42
}:
stdenv.mkDerivation rec {
name = "ntdb-1.0";
src = fetchurl {
url = "mirror://samba/tdb/${name}.tar.gz";
sha256 = "0jdzgrz5sr25k83yrw7wqb3r0yj1v04z4s3lhsmnr5z6n5ifhyl1";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
python readline gettext libxslt docbook_xsl docbook_xml_dtd_42
];
preConfigure = ''
patchShebangs buildtools/bin/waf
'';
configureFlags = [
"--bundled-libraries=NONE"
"--builtin-libraries=replace,ccan"
];
meta = with stdenv.lib; {
description = "The not-so trivial database";
homepage = https://tdb.samba.org/;
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}