13 lines
148 B
Nix
13 lines
148 B
Nix
let
|
|
pkgs = import <nixpkgs> { };
|
|
in
|
|
pkgs.mkShell {
|
|
name = "env";
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
tree-sitter
|
|
emscripten
|
|
];
|
|
}
|
|
|