From e6e7de082d742e619a869c822d89157287105a2f Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Sun, 20 Mar 2016 00:42:12 +0100 Subject: Fixing icu for ARM with a patch from openembedded. It failed with an "internal error". --- pkgs/development/libraries/icu/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkgs/development/libraries/icu') diff --git a/pkgs/development/libraries/icu/default.nix b/pkgs/development/libraries/icu/default.nix index 148e4f02a94f..224e9302baa6 100644 --- a/pkgs/development/libraries/icu/default.nix +++ b/pkgs/development/libraries/icu/default.nix @@ -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 {})) -- cgit 1.4.1