tree-sitter-plpgsql/shell.nix

11 lines
132 B
Nix
Raw Normal View History

2021-08-21 20:15:42 +03:00
let
pkgs = import <nixpkgs> { };
in pkgs.mkShell {
buildInputs = with pkgs; [
2021-08-31 21:33:46 +03:00
git
2021-08-21 20:15:42 +03:00
nodejs
gcc
tree-sitter
];
}