about summary refs log tree commit diff
path: root/pkgs/development/libraries/icu
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2016-03-20 00:42:12 +0100
committerLluís Batlle i Rossell <viric@viric.name>2016-03-20 00:42:12 +0100
commite6e7de082d742e619a869c822d89157287105a2f (patch)
tree8c9869ab33db90a1ca36bb81b15f79f6b74b685d /pkgs/development/libraries/icu
parent1a7a7d8ef9f54651d3eb0ba772802a7c79049ec6 (diff)
downloadnixlib-e6e7de082d742e619a869c822d89157287105a2f.tar
nixlib-e6e7de082d742e619a869c822d89157287105a2f.tar.gz
nixlib-e6e7de082d742e619a869c822d89157287105a2f.tar.bz2
nixlib-e6e7de082d742e619a869c822d89157287105a2f.tar.lz
nixlib-e6e7de082d742e619a869c822d89157287105a2f.tar.xz
nixlib-e6e7de082d742e619a869c822d89157287105a2f.tar.zst
nixlib-e6e7de082d742e619a869c822d89157287105a2f.zip
Fixing icu for ARM with a patch from openembedded.
It failed with an "internal error".
Diffstat (limited to 'pkgs/development/libraries/icu')
-rw-r--r--pkgs/development/libraries/icu/default.nix6
1 files changed, 4 insertions, 2 deletions
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 {}))