tcl-guessr/shell.nix

9 lines
112 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShellNoCC {
buildInputs = with pkgs; [
bun
wrangler
];
}