summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-03-08 16:02:46 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-03-08 16:02:46 +0000
commitce50734cf067496ae50d1a6fd139fc03de283cbc (patch)
tree8603be7a557177d8646093c4edf7bdb097577b11 /pkgs/system/all-packages-generic.nix
parent1b8e9faf08d2bb5fe83464d8380dabc52982f935 (diff)
downloadnixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.tar
nixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.tar.gz
nixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.tar.bz2
nixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.tar.lz
nixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.tar.xz
nixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.tar.zst
nixpkgs-ce50734cf067496ae50d1a6fd139fc03de283cbc.zip
* Started reorganising stdenv:
  - gcc/ld-wrappers have been factored out into a separate
    derivation.  This allows a working gcc to be installed in the user
    environment.  (Previously the Nix gcc didn't work because it
    needed a whole bunch of flags to point to glibc.)
    
  - Better modularity: packages can specify hooks into the setup
    scripts.  For instance, setup no longer knows about the
    PKG_CONFIG_PATH variable; pkgconfig can set it up instead.

  - gcc not longer depends on binutils.  This simplifies the bootstrap
    process.

svn path=/nixpkgs/trunk/; revision=816
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index fde797d1608..4de6e4ca502 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -201,7 +201,7 @@
     inherit fetchurl stdenv binutils;
   };
 
-  g77 = (import ../development/compilers/gcc-wrapper) {
+  g77 = (import ../build-support/gcc-wrapper) {
     inherit stdenv;
     gcc = (import ../development/compilers/gcc-new) {
       inherit fetchurl stdenv;