summary refs log tree commit diff
path: root/pkgs/stdenv/default.nix
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2006-08-15 14:46:41 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2006-08-15 14:46:41 +0000
commit56315425c93edd6d9261630cebdd47a08f4d7407 (patch)
treed5b22e298620ba87f6940fcc06a1bad39db25fc1 /pkgs/stdenv/default.nix
parent3fd88419226613ba0285f67cf3766463e301d5bd (diff)
downloadnixlib-56315425c93edd6d9261630cebdd47a08f4d7407.tar
nixlib-56315425c93edd6d9261630cebdd47a08f4d7407.tar.gz
nixlib-56315425c93edd6d9261630cebdd47a08f4d7407.tar.bz2
nixlib-56315425c93edd6d9261630cebdd47a08f4d7407.tar.lz
nixlib-56315425c93edd6d9261630cebdd47a08f4d7407.tar.xz
nixlib-56315425c93edd6d9261630cebdd47a08f4d7407.tar.zst
nixlib-56315425c93edd6d9261630cebdd47a08f4d7407.zip
Initial work on MinGW/MSYS standard environment
svn path=/nixpkgs/trunk/; revision=6122
Diffstat (limited to 'pkgs/stdenv/default.nix')
-rw-r--r--pkgs/stdenv/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix
index c84822003931..79b69fabfaea 100644
--- a/pkgs/stdenv/default.nix
+++ b/pkgs/stdenv/default.nix
@@ -73,12 +73,17 @@ rec {
     inherit genericStdenv gccWrapper;
   };
 
+  # MinGW/MSYS standard environment.
+  stdenvMinGW = (import ./mingw) {
+    inherit system;
+  };
 
   # Select the appropriate stdenv for the platform `system'.
   stdenv =
     if system == "i686-linux" then stdenvLinux
     else if system == "i686-freebsd" then stdenvFreeBSD
     else if system == "i686-cygwin" then stdenvCygwin
+    else if system == "i686-msys" then stdenvMinGW
     else if system == "powerpc-darwin" then stdenvDarwin
     else if system == "i686-darwin" then stdenvNix
     else stdenvNative;