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

35 lines
875 B
Nix
Raw Normal View History

2015-01-03 01:20:29 +00:00
{ stdenv, fetchurl, python, pkgconfig, readline, tdb, talloc, tevent
2014-04-30 08:42:02 +01:00
, popt, libxslt, docbook_xsl, docbook_xml_dtd_42
}:
stdenv.mkDerivation rec {
2015-07-31 19:52:31 +01:00
name = "ldb-1.1.21";
2014-04-30 08:42:02 +01:00
src = fetchurl {
url = "mirror://samba/ldb/${name}.tar.gz";
2015-07-31 19:52:31 +01:00
sha256 = "1wfvqys8g3l2gki5xhf5jc50f6k95vdgzb97vvqfls404xzvnyr6";
2014-04-30 08:42:02 +01:00
};
buildInputs = [
2015-01-03 01:20:29 +00:00
python pkgconfig readline tdb talloc tevent popt
2014-04-30 08:42:02 +01:00
libxslt docbook_xsl docbook_xml_dtd_42
];
preConfigure = ''
2015-01-03 01:20:29 +00:00
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
2014-04-30 08:42:02 +01:00
'';
configureFlags = [
"--bundled-libraries=NONE"
"--builtin-libraries=replace"
];
meta = with stdenv.lib; {
description = "a LDAP-like embedded database";
homepage = http://ldb.samba.org/;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}