icu4c: Update to 51.1
This commit is contained in:
parent
ff54e4724c
commit
d71d9542ea
@ -2,25 +2,26 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
pname = "icu4c";
|
pname = "icu4c";
|
||||||
version = "4.8.1";
|
version = "51.1";
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = pname + "-" + version;
|
name = pname + "-" + version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.icu-project.org/files/${pname}/${version}/${pname}-"
|
url = http://download.icu-project.org/files/icu4c/51.1/icu4c-51_1-src.tgz;
|
||||||
+ (stdenv.lib.replaceChars ["."] ["_"] version) + "-src.tgz";
|
sha256 = "0sv6hgkm92pm27zgjxgk284lcxxbsl0syi40ckw2b7yj7d8sxrc7";
|
||||||
sha256 = "13zq190gl54zr84f0k48w9knarjsb966jkailyy06yhqjipcv90r";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
postUnpack = "
|
postUnpack = ''
|
||||||
sourceRoot=\${sourceRoot}/source
|
sourceRoot=''${sourceRoot}/source
|
||||||
echo Source root reset to \${sourceRoot}
|
echo Source root reset to ''${sourceRoot}
|
||||||
";
|
'';
|
||||||
|
|
||||||
configureFlags = "--disable-debug";
|
configureFlags = "--disable-debug";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Unicode and globalization support library";
|
description = "Unicode and globalization support library";
|
||||||
homepage = http://site.icu-project.org/;
|
homepage = http://site.icu-project.org/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user