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-08-03 10:36:29 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-08-03 10:36:29 +0000
commitffdc517c332c12c05c375a5b4185f6cf7a29a2f7 (patch)
tree047c4a4ece17b4e26ad189bc4b0c75ddf69c50fb /pkgs/system/all-packages-generic.nix
parentf4e18e486d9dd2e0cd9936b48ce4d939d3643da8 (diff)
downloadnixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.tar
nixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.tar.gz
nixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.tar.bz2
nixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.tar.lz
nixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.tar.xz
nixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.tar.zst
nixpkgs-ffdc517c332c12c05c375a5b4185f6cf7a29a2f7.zip
* GCC 2.95.3 (required to build some "old" stuff).
svn path=/nixpkgs/trunk/; revision=1213
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 047eb5cc5e7..87917a287dc 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -234,6 +234,18 @@ rec {
     inherit stdenv;
   };
 
+  gcc295 = (import ../build-support/gcc-wrapper) {
+    nativeTools = false;
+    nativeGlibc = false;
+    gcc = (import ../development/compilers/gcc-2.95) {
+      inherit fetchurl stdenv noSysDirs;
+      patch = gnupatch;
+    };
+    binutils = stdenv.gcc.binutils;
+    glibc = stdenv.gcc.glibc;
+    inherit stdenv;
+  };
+
   g77 = (import ../build-support/gcc-wrapper) {
     name = "g77";
     nativeTools = false;