summary refs log tree commit diff
path: root/pkgs/stdenv/nix-linux/boot.nix
blob: cc5ab2122e8719c87a6c46081a42a08980128fa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, glibc}:

(import ../generic) {
  name = "stdenv-nix-linux-boot";
  preHook = ./prehook-boot.sh;
  initialPath = "/usr/local /usr /";

  inherit stdenv;

  gcc = (import ../../build-support/gcc-wrapper) {
    name = "gcc-native";
    isNative = true;
    nativePrefix = "/usr";
    inherit stdenv glibc;
  };
}