Merge pull request #20955 from savannidgerinel/bugfix-icu-version

icu4c: fix #20954: icu_54_1 package does not compile
This commit is contained in:
Joachim F
2016-12-07 01:25:06 +01:00
committed by GitHub
3 changed files with 2 additions and 14 deletions

View File

@@ -1,11 +0,0 @@
{ 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";
};
})