nt/flake.nix
2026-01-25 14:39:09 +10:00

11 lines
311 B
Nix

{
description = "NixTypes (nt)";
outputs = _: let
# nt depends on the mix subsystem for bootstrapping,
# we can fake its dependency on this mwahahahah
bootstrap = import ./nt/primitives/bootstrap;
mix = import ./nt/primitives/mix {this = bootstrap;};
in
import ./nt {inherit mix;};
}