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

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

  inherit stdenv;

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