summary refs log tree commit diff
path: root/pkgs/stdenv/native/default.nix
blob: 2fd6b670c3996aeee4cdaa6afa773d6bbbf74b89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv}:

(import ../generic) {
  name = "stdenv-native";
  preHook = ./prehook.sh;
  initialPath = "/usr/local /usr /";

  inherit stdenv;

  gcc = (import ../../build-support/gcc-wrapper) {
    name = "gcc-native";
    isNative = true;
    nativePrefix = "/usr";
    inherit stdenv;
  };
}