summary refs log tree commit diff
path: root/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/default.nix
blob: 9f3d61b92bc918403054d203f491c0149f496ba3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, newScope
}:

lib.makeScope newScope (self: with self; {
  inherit (callPackage ./platforms.nix { }) platforms stage0Arch m2libcArch m2libcOS baseAddress;

  inherit (self.callPackage ./bootstrap-sources.nix {}) version minimal-bootstrap-sources;

  src = minimal-bootstrap-sources;

  m2libc = src + "/M2libc";

  hex0 = callPackage ./hex0.nix { };
  inherit (self.hex0) hex0-seed;

  kaem = callPackage ./kaem { };
  kaem-minimal = callPackage ./kaem/minimal.nix { };

  mescc-tools-boot = callPackage ./mescc-tools-boot.nix { };

  inherit (self.mescc-tools-boot) blood-elf-0 hex2 kaem-unwrapped M1 M2;

  mescc-tools = callPackage ./mescc-tools { };

  mescc-tools-extra = callPackage ./mescc-tools-extra { };
})