about summary refs log tree commit diff
path: root/pkgs/stdenv/cygwin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/stdenv/cygwin/default.nix')
-rw-r--r--pkgs/stdenv/cygwin/default.nix25
1 files changed, 0 insertions, 25 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;
-  };
-}