summary refs log tree commit diff
path: root/pkgs/stdenv/cygwin
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-06-18 15:09:13 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-06-18 15:09:13 +0000
commit7bf0c5ba012198ca529de76c215f5ef5ea474cb4 (patch)
tree07e7d78b8c088706e6d563e7583d287904a32a3c /pkgs/stdenv/cygwin
parentaab9aee56ef90e2e75c70e2b7e27445b559e0cbc (diff)
downloadnixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.tar
nixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.tar.gz
nixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.tar.bz2
nixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.tar.lz
nixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.tar.xz
nixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.tar.zst
nixpkgs-7bf0c5ba012198ca529de76c215f5ef5ea474cb4.zip
* Folded the Cygwin, powerpc-darwin and FreeBSD stdenv into the "native"
  stdenv.

svn path=/nixpkgs/trunk/; revision=12147
Diffstat (limited to 'pkgs/stdenv/cygwin')
-rw-r--r--pkgs/stdenv/cygwin/default.nix25
-rw-r--r--pkgs/stdenv/cygwin/prehook.sh7
2 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/stdenv/cygwin/default.nix b/pkgs/stdenv/cygwin/default.nix
deleted file mode 100644
index b1ca853c612..00000000000
--- a/pkgs/stdenv/cygwin/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{stdenv, genericStdenv, gccWrapper}:
-
-genericStdenv {
-  name = "stdenv-native";
-  preHook = ./prehook.sh;
-  initialPath = "/usr/local /usr /";
-
-  inherit stdenv;
-
-  gcc = gccWrapper {
-    name = "gcc-native";
-    nativeTools = true;
-    nativeLibc = true;
-    nativePrefix = "/usr";
-    inherit stdenv;
-  };
-
-  shell = "/bin/bash";
-
-  fetchurlBoot = import ../../build-support/fetchurl {
-    inherit stdenv;
-    # Curl should be in /usr/bin or so.
-    curl = null;
-  };
-}
diff --git a/pkgs/stdenv/cygwin/prehook.sh b/pkgs/stdenv/cygwin/prehook.sh
deleted file mode 100644
index b2ada869b29..00000000000
--- a/pkgs/stdenv/cygwin/prehook.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-export NIX_ENFORCE_PURITY=
-
-if test -z "$cygwinConfigureEnableShared"; then
-  export configureFlags="$configureFlags --disable-shared"
-fi
-
-PATH_DELIMITER=';'