Reusable Nix development tooling for Tiny Interpreters.
Add it as an input:
inputs.ti.url = "github:tinyinterpreters/nix";The flake has no inputs of its own.
let
mkElmShell = ti.lib.mkElmShell pkgs;
in
{
devShells.default = mkElmShell {
name = "const";
};
}