nixpkgs/pkgs/stdenv/native/default.nix

18 lines
320 B
Nix
Raw Normal View History

{stdenv}:
(import ../generic) {
name = "stdenv-native";
preHook = ./prehook.sh;
initialPath = "/usr/local /usr /";
inherit stdenv;
gcc = (import ../../build-support/gcc-wrapper) {
name = "gcc-native";
nativeTools = true;
nativeGlibc = true;
nativePrefix = "/usr";
inherit stdenv;
};
}