1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/stdenv/native/default.nix

18 lines
312 B
Nix
Raw Normal View History

{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";
};
}