about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/default.nix
blob: c15223a43d481c38c443a3db30f3ab2f055344ef (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
{ lib
, newScope
}:

lib.makeScope newScope (self: with self; {
  inherit (self.callPackage ./bootstrap-sources.nix {})
    version hex0-seed minimal-bootstrap-sources;

  src = minimal-bootstrap-sources;

  m2libc = src + "/M2libc";

  hex0 = callPackage ./hex0.nix { };

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

  stage0-posix-x86 = callPackage ./stage0-posix-x86.nix { };

  inherit (self.stage0-posix-x86) blood-elf-0 hex2 kaem-unwrapped M1 M2;

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

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