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

51 lines
1.5 KiB
Nix
Raw Normal View History

2015-01-03 04:20:29 +03:00
{ stdenv, fetchurl, python, pkgconfig, readline, tdb, talloc, tevent
2018-04-29 05:13:12 +03:00
, popt, libxslt, docbook_xsl, docbook_xml_dtd_42, cmocka
2014-04-30 11:42:02 +04:00
}:
stdenv.mkDerivation rec {
name = "ldb-1.3.3";
2014-04-30 11:42:02 +04:00
src = fetchurl {
url = "mirror://samba/ldb/${name}.tar.gz";
sha256 = "14gsrm7dvyjpbpnc60z75j6fz2p187abm2h353lq95kx2bv70c1b" ;
2014-04-30 11:42:02 +04:00
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkgconfig ];
2014-04-30 11:42:02 +04:00
buildInputs = [
python readline tdb talloc tevent popt
2014-04-30 11:42:02 +04:00
libxslt docbook_xsl docbook_xml_dtd_42
2018-04-29 05:13:12 +03:00
cmocka
2014-04-30 11:42:02 +04:00
];
2019-03-20 16:04:12 +03:00
patches = [
# CVE-2019-3824
# downloading the patch from debian as they have ported the patch from samba to ldb but otherwise is identical to
# https://bugzilla.samba.org/attachment.cgi?id=14857
(fetchurl {
name = "CVE-2019-3824.patch";
url = "https://sources.debian.org/data/main/l/ldb/2:1.1.27-1+deb9u1/debian/patches/CVE-2019-3824-master-v4-5-02.patch";
sha256 = "1idnqckvjh18rh9sbq90rr4sxfviha9nd1ca9pd6lai0y6r6q4yd";
})
];
2014-04-30 11:42:02 +04:00
preConfigure = ''
2015-01-03 04:20:29 +03:00
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
2014-04-30 11:42:02 +04:00
'';
configureFlags = [
"--bundled-libraries=NONE"
"--builtin-libraries=replace"
];
stripDebugList = "bin lib modules";
2014-04-30 11:42:02 +04:00
meta = with stdenv.lib; {
description = "A LDAP-like embedded database";
2018-06-23 14:34:55 +03:00
homepage = https://ldb.samba.org/;
2014-04-30 11:42:02 +04:00
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}