about summary refs log tree commit diff
path: root/pkgs/stdenv/cygwin
diff options
context:
space:
mode:
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 b1ca853c612b..000000000000
--- 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 b2ada869b290..000000000000
--- 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=';'