about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-12-13 08:04:14 +0000
committerLudovic Courtès <ludo@gnu.org>2010-12-13 08:04:14 +0000
commit532e844a0c226e73bde8958d3ccd2a1bf13bf830 (patch)
treeae8fc14f7b447c87d08ebcdab599df810c9684fb
parentf03da539a72977746325047dcc53de8474ad921f (diff)
downloadnixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.tar
nixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.tar.gz
nixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.tar.bz2
nixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.tar.lz
nixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.tar.xz
nixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.tar.zst
nixlib-532e844a0c226e73bde8958d3ccd2a1bf13bf830.zip
Fix `binutilsCross'.
svn path=/nixpkgs/branches/stdenv-updates/; revision=25094
-rw-r--r--pkgs/top-level/all-packages.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index e8be849d4316..e2b982e13398 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2417,9 +2417,9 @@ let
   };
 
   binutilsCross = forceBuildDrv (import ../development/tools/misc/binutils {
-      inherit stdenv fetchurl;
-      noSysDirs = true;
-      cross = assert crossSystem != null; crossSystem;
+    inherit stdenv fetchurl zlib;
+    noSysDirs = true;
+    cross = assert crossSystem != null; crossSystem;
   });
 
   bison = bison24;