minimal-bootstrap: Expose some details

Nice for poking around in the repl.
This commit is contained in:
John Ericson 2023-05-13 17:33:25 -04:00
parent eb34a22511
commit ce85120cbc
2 changed files with 6 additions and 2 deletions

View file

@ -20,7 +20,9 @@ lib.makeScope
mes = callPackage ./mes { };
mes-libc = callPackage ./mes/libc.nix { };
inherit (callPackage ./stage0-posix { }) kaem m2libc mescc-tools mescc-tools-extra;
stage0-posix = callPackage ./stage0-posix { };
inherit (self.stage0-posix) kaem m2libc mescc-tools mescc-tools-extra;
tinycc-bootstrappable = callPackage ./tinycc/bootstrappable.nix { };
tinycc-mes = callPackage ./tinycc/mes.nix { };

View file

@ -12,7 +12,9 @@ lib.makeScope newScope (self: with self; {
kaem = callPackage ./kaem { };
kaem-minimal = callPackage ./kaem/minimal.nix { };
inherit (callPackage ./stage0-posix-x86.nix { }) blood-elf-0 hex2 kaem-unwrapped M1 M2;
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 { };