mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
a1b3ae0c81
svn path=/nixpkgs/trunk/; revision=826
17 lines
293 B
Nix
17 lines
293 B
Nix
{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;
|
|
};
|
|
}
|