10 lines
132 B
Nix
10 lines
132 B
Nix
let
|
|
pkgs = import <nixpkgs> { };
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
git
|
|
nodejs
|
|
gcc
|
|
tree-sitter
|
|
];
|
|
}
|