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 07:42:02 +00:00
, popt, libxslt, docbook_xsl, docbook_xml_dtd_42
}:
stdenv.mkDerivation rec {
name = "ldb-1.1.26";
2014-04-30 07:42:02 +00:00
src = fetchurl {
url = "mirror://samba/ldb/${name}.tar.gz";
sha256 = "1rmjv12pf57vga8s5z9p9d90rlfckc1lqjbcp89r83cq5fkwfhw8";
2014-04-30 07:42:02 +00:00
};
buildInputs = [
2015-01-03 01:20:29 +00:00
python pkgconfig readline tdb talloc tevent popt
2014-04-30 07:42:02 +00: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 07:42:02 +00: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;
};
}