Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

openldap: 2.4.42 -> 2.4.44

(cherry picked from commit efe33d6e8739ea79efcada98e15da49aeed598b6)
Signed-off-by: Domen Kožar <domen@dev.si>

CVE-2015-6908

authored by Rickard Nilsson and committed by Domen Kožar d1226f31 0dae829d

+2 -14
+2 -14
pkgs/development/libraries/openldap/default.nix
··· 1 1 { stdenv, fetchurl, openssl, cyrus_sasl, db, groff }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "openldap-2.4.42"; 4 + name = "openldap-2.4.44"; 5 5 6 6 src = fetchurl { 7 7 url = "http://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz"; 8 - sha256 = "0qwfpb5ipp2l76v11arghq5mr0sjc6xhjfg8a0kgsaw5qpib1dzf"; 8 + sha256 = "0044p20hx07fwgw2mbwj1fkx04615hhs1qyx4mawj2bhqvrnppnp"; 9 9 }; 10 - 11 - # Should be removed with >=2.4.43 12 - patches = [ 13 - ./CVE-2015-6908.patch 14 - ( 15 - fetchurl { 16 - sha256 = "5bcb3f9fb7186b380efa0a1c2d31ad755e190134b5c4dac07c65bbf7c0b6b3b3"; 17 - url = "https://github.com/LMDB/lmdb/commit/3360cbad668f678fb23c064ca4efcc5c9ae95d10.patch"; 18 - name = "openldap-clang-compilation.patch"; 19 - } 20 - ) 21 - ]; 22 10 23 11 outputs = [ "out" "man" ]; 24 12