about summary refs log tree commit diff
path: root/pkgs/stdenv/mingw
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2006-08-16 15:48:20 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2006-08-16 15:48:20 +0000
commit890ce7f2661e865ec6e6eee21ae7a7df40559a34 (patch)
tree824b59d76a348b825836695fe5b6ce053c5b391a /pkgs/stdenv/mingw
parent38de63873c8148bf3afb1292bb9f6389074411d6 (diff)
downloadnixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.tar
nixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.tar.gz
nixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.tar.bz2
nixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.tar.lz
nixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.tar.xz
nixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.tar.zst
nixlib-890ce7f2661e865ec6e6eee21ae7a7df40559a34.zip
Cleanup
svn path=/nixpkgs/trunk/; revision=6135
Diffstat (limited to 'pkgs/stdenv/mingw')
-rw-r--r--pkgs/stdenv/mingw/default.nix27
1 files changed, 2 insertions, 25 deletions
diff --git a/pkgs/stdenv/mingw/default.nix b/pkgs/stdenv/mingw/default.nix
index 77f3cbc11b47..5a66a65021b3 100644
--- a/pkgs/stdenv/mingw/default.nix
+++ b/pkgs/stdenv/mingw/default.nix
@@ -1,10 +1,3 @@
-/**
- * Initial stdenv should have:
- * - shell
- * - mkdir
- * - gnu tar
- * - curl
- */
 {system} :
 
 let {
@@ -13,6 +6,8 @@ let {
 
   /**
    * Initial standard environment based on native Cygwin tools.
+   * GCC is not requires.
+   * Required (approx): bash, mkdir, gnu tar, curl.
    */
   stdenvInit1 =
     import ./simple-stdenv {
@@ -151,21 +146,3 @@ let {
      inherit fetchurl;
     };
 }
-
-     /* 
-
-  mingw = {
-    langC = true;
-    langCC = true;
-    langF77 = true;
-  };
-
-    gcc =
-      import ../../build-support/gcc-wrapper {
-        nativeTools = false;
-        nativeGlibc = false;
-        stdenv = stdenvInitial;
-        binutils = msys;
-        gcc = mingw;
-        shell = msys + /bin/sh;
-      }; */