aboutsummaryrefslogtreecommitdiffstats
path: root/tests/nix.nix
blob: de2e7f34d0a70f8fff6104859eab3b48b9732b80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import <nixpkgs> {}, ... }:

pkgs.mkShell {
  # TODO add more dependencies
  buildInputs = [
    pkgs.tree-sitter
  ];

  /* TODO remove unnecessary content */
  shellHook = ''
    ls
  ''
}