Fixing icu for ARM with a patch from openembedded.

It failed with an "internal error".
This commit is contained in:
Lluís Batlle i Rossell 2016-03-20 00:42:12 +01:00
parent 1a7a7d8ef9
commit e6e7de082d

View file

@ -4,7 +4,7 @@ let
pname = "icu4c";
version = "56.1";
in
stdenv.mkDerivation {
stdenv.mkDerivation ({
name = pname + "-" + version;
src = fetchurl {
@ -45,4 +45,6 @@ stdenv.mkDerivation {
maintainers = with maintainers; [ raskin urkud ];
platforms = platforms.all;
};
}
} // (if stdenv.isArm then {
patches = [ ./0001-Disable-LDFLAGSICUDT-for-Linux.patch ];
} else {}))