nt/flake.nix

12 lines
316 B
Nix
Raw Normal View History

2025-11-01 13:20:13 +10:00
{
2026-01-24 19:01:29 +10:00
description = "NixTypes (nt)";
2025-11-01 13:20:13 +10:00
2026-01-24 23:27:10 +10:00
outputs = _: let
2026-01-24 23:44:34 +10:00
# nt depends on the mix subsystem for bootstrapping,
# we can fake its dependency on this mwahahahah
this.util = import ./nt/primitives/util/bootstrap.nix;
mix = import ./nt/primitives/mix {inherit this;};
2026-01-24 23:27:10 +10:00
in
import ./nt {inherit mix;};
2025-11-01 13:20:13 +10:00
}