1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/icu/54.1.nix
Graham Christensen ea07ad6bd9
Revert "Revert "icu: patch for multiple CVEs""
icu: patch for multiple CVEs

 - CVE-2014-6585
 - CVE-2015-4760
 - CVE-2016-0494
 - CVE-2016-6293
 - CVE-2016-7415
2016-11-30 19:29:51 -05:00

12 lines
386 B
Nix

{ stdenv, fetchurl, fetchpatch, fixDarwinDylibNames }:
let
icu = import ./default.nix { inherit stdenv fetchurl fetchpatch fixDarwinDylibNames; };
in
stdenv.lib.overrideDerivation icu (attrs: {
src = fetchurl {
url = "http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.tgz";
sha256 = "1cwapgjmvrcv1n2wjspj3vahidg596gjfp4jn1gcb4baralcjayl";
};
})