summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-30 13:45:48 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-30 13:45:48 +0000
commit769c44da986e830460742418e46f163cc271de85 (patch)
treec670b18a9cd43cb51a40de1c2d72c14af69527ab /pkgs/top-level/all-packages.nix
parent9050bc10fed5951290b18982ccf3a3e9b7f55e0e (diff)
downloadnixpkgs-769c44da986e830460742418e46f163cc271de85.tar
nixpkgs-769c44da986e830460742418e46f163cc271de85.tar.gz
nixpkgs-769c44da986e830460742418e46f163cc271de85.tar.bz2
nixpkgs-769c44da986e830460742418e46f163cc271de85.tar.lz
nixpkgs-769c44da986e830460742418e46f163cc271de85.tar.xz
nixpkgs-769c44da986e830460742418e46f163cc271de85.tar.zst
nixpkgs-769c44da986e830460742418e46f163cc271de85.zip
* Get User Mode Linux to compile again:
  - Hack to make it work with the latest host kernel headers
    (2.6.18.1).
  - Don't call depmod impurily, rather use oldskool modutils.
  - modutils: use the final version, and use GCC 3.4 to compile it
    (4.1 doesn't work).

svn path=/nixpkgs/trunk/; revision=6908
Diffstat (limited to 'pkgs/top-level/all-packages.nix')
-rw-r--r--pkgs/top-level/all-packages.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 72c4114246e..664652b2063 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2137,7 +2137,8 @@ rec {
   };
 
   modutils = import ../os-specific/linux/modutils {
-    inherit fetchurl stdenv bison flex;
+    inherit fetchurl bison flex;
+    stdenv = overrideGCC stdenv gcc34;
   };
 
   nettools = import ../os-specific/linux/net-tools {
@@ -2848,7 +2849,7 @@ rec {
   };
 
   uml = import ../misc/uml {
-    inherit fetchurl stdenv perl;
+    inherit fetchurl stdenv perl modutils;
     m4 = gnum4;
     gcc = gcc33;
   };