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

41 lines
1.1 KiB
Nix
Raw Normal View History

2015-01-03 02:20:29 +01:00
{ stdenv, fetchurl, python, pkgconfig, readline, tdb, talloc, tevent
2018-04-29 04:13:12 +02:00
, popt, libxslt, docbook_xsl, docbook_xml_dtd_42, cmocka
2014-04-30 09:42:02 +02:00
}:
stdenv.mkDerivation rec {
name = "ldb-1.3.3";
2014-04-30 09:42:02 +02:00
src = fetchurl {
url = "mirror://samba/ldb/${name}.tar.gz";
sha256 = "14gsrm7dvyjpbpnc60z75j6fz2p187abm2h353lq95kx2bv70c1b" ;
2014-04-30 09:42:02 +02:00
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkgconfig ];
2014-04-30 09:42:02 +02:00
buildInputs = [
python readline tdb talloc tevent popt
2014-04-30 09:42:02 +02:00
libxslt docbook_xsl docbook_xml_dtd_42
2018-04-29 04:13:12 +02:00
cmocka
2014-04-30 09:42:02 +02:00
];
preConfigure = ''
2015-01-03 02:20:29 +01:00
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
2014-04-30 09:42:02 +02:00
'';
configureFlags = [
"--bundled-libraries=NONE"
"--builtin-libraries=replace"
];
stripDebugList = "bin lib modules";
2014-04-30 09:42:02 +02:00
meta = with stdenv.lib; {
description = "A LDAP-like embedded database";
2018-06-23 13:34:55 +02:00
homepage = https://ldb.samba.org/;
2014-04-30 09:42:02 +02:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}