Commit ce85120c authored by John Ericson's avatar John Ericson
Browse files

minimal-bootstrap: Expose some details

Nice for poking around in the repl.
parent eb34a225
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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 { };
+3 −1
Original line number Diff line number Diff line
@@ -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 { };