about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-02-28 09:52:06 -0600
committerWill Dietz <w@wdtz.org>2018-02-28 09:52:06 -0600
commit2d786a7697fa75e31c9b6e1203212fc531217612 (patch)
tree0aca3f9ef7c4560fd3c7fe158c1bc043a72f9997
parent4f6b085c5e4421606e9878ae09d4bb104dba89ed (diff)
downloadnixlib-2d786a7697fa75e31c9b6e1203212fc531217612.tar
nixlib-2d786a7697fa75e31c9b6e1203212fc531217612.tar.gz
nixlib-2d786a7697fa75e31c9b6e1203212fc531217612.tar.bz2
nixlib-2d786a7697fa75e31c9b6e1203212fc531217612.tar.lz
nixlib-2d786a7697fa75e31c9b6e1203212fc531217612.tar.xz
nixlib-2d786a7697fa75e31c9b6e1203212fc531217612.tar.zst
nixlib-2d786a7697fa75e31c9b6e1203212fc531217612.zip
icu: fix regression on 32bit, missing parens :)
-rw-r--r--pkgs/top-level/all-packages.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 359227f25f50..6c58f98380a6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9241,22 +9241,22 @@ with pkgs;
 
   hyena = callPackage ../development/libraries/hyena { };
 
-  icu58 = callPackage (import ../development/libraries/icu/58.nix fetchurl) {
+  icu58 = callPackage (import ../development/libraries/icu/58.nix fetchurl) ({
     nativeBuildRoot = buildPackages.icu58.override { buildRootOnly = true; };
   } //
     (stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) {
       stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4'
-    });
-  icu59 = callPackage ../development/libraries/icu/59.nix {
+    }));
+  icu59 = callPackage ../development/libraries/icu/59.nix ({
     nativeBuildRoot = buildPackages.icu59.override { buildRootOnly = true; };
   } // (stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) {
       stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4'
-    });
-  icu60 = callPackage ../development/libraries/icu/60.nix {
+    }));
+  icu60 = callPackage ../development/libraries/icu/60.nix ({
     nativeBuildRoot = buildPackages.icu60.override { buildRootOnly = true; };
   } // (stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) {
       stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4'
-    });
+    }));
 
   icu = icu59;