7bf0c5ba01
stdenv. svn path=/nixpkgs/trunk/; revision=12147
28 lines
661 B
Nix
28 lines
661 B
Nix
{stdenv, pkgs}:
|
|
|
|
import ../generic {
|
|
name = "stdenv-nix";
|
|
preHook = ./prehook.sh;
|
|
initialPath = (import ../common-path.nix) {pkgs = pkgs;};
|
|
|
|
inherit stdenv;
|
|
|
|
gcc = import ../../build-support/gcc-wrapper {
|
|
nativeTools = false;
|
|
nativeLibc = true;
|
|
inherit stdenv;
|
|
binutils =
|
|
if stdenv.isDarwin then
|
|
import ../../build-support/native-darwin-cctools-wrapper {inherit stdenv;}
|
|
else
|
|
pkgs.binutils;
|
|
gcc = if stdenv.isDarwin then pkgs.gccApple.gcc else pkgs.gcc.gcc;
|
|
shell = pkgs.bash + "/bin/sh";
|
|
};
|
|
|
|
shell = pkgs.bash + "/bin/sh";
|
|
|
|
fetchurlBoot = stdenv.fetchurlBoot;
|
|
forceFetchurlBoot = false;
|
|
}
|