tree-sitter implementation for the confindent configuration language
1{
2 inputs = {
3 nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
4 };
5
6 outputs = { self, nixpkgs }:
7 let
8 pkgs = import nixpkgs { system = "x86_64-linux"; };
9 in {
10 devShells.x86_64-linux.default = pkgs.mkShell {
11 packages = with pkgs; [
12 tree-sitter clang nodejs python3
13 #rustc cargo clippy rustfmt inetutils python3
14 ];
15 #RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
16 };
17 };
18}