about summary refs log tree commit diff
path: root/pkgs-ng/stdenv/nix/default.fix
blob: e7f343d375f5c1af3fdd3058a890919e1be49ad7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{bootStdenv, pkgs}: (import ../generic) {
  name = "stdenv-nix";
  system = bootStdenv.system;
  prehook = ./prehook.sh;
  posthook = ./posthook.sh;
  initialPath = (import ./path.fix) {pkgs = pkgs};
  param1 = pkgs.bash;
  param2 = pkgs.gcc;
  param3 = pkgs.binutils;
  param4 = "";
  param5 = "";
  noSysDirs = false;
}