tangled
alpha
login
or
join now
nove.dev
/
tree-sitter-confindent
1
fork
atom
tree-sitter implementation for the confindent configuration language
1
fork
atom
overview
issues
pulls
pipelines
flake init
nove.dev
4 months ago
c4529518
+45
2 changed files
expand all
collapse all
unified
split
flake.lock
flake.nix
+27
flake.lock
···
1
1
+
{
2
2
+
"nodes": {
3
3
+
"nixpkgs": {
4
4
+
"locked": {
5
5
+
"lastModified": 1762233356,
6
6
+
"narHash": "sha256-cGS3lLTYusbEP/IJIWGgnkzIl+FA5xDvtiHyjalGr4k=",
7
7
+
"owner": "NixOS",
8
8
+
"repo": "nixpkgs",
9
9
+
"rev": "ca534a76c4afb2bdc07b681dbc11b453bab21af8",
10
10
+
"type": "github"
11
11
+
},
12
12
+
"original": {
13
13
+
"owner": "NixOS",
14
14
+
"ref": "nixos-25.05",
15
15
+
"repo": "nixpkgs",
16
16
+
"type": "github"
17
17
+
}
18
18
+
},
19
19
+
"root": {
20
20
+
"inputs": {
21
21
+
"nixpkgs": "nixpkgs"
22
22
+
}
23
23
+
}
24
24
+
},
25
25
+
"root": "root",
26
26
+
"version": 7
27
27
+
}
+18
flake.nix
···
1
1
+
{
2
2
+
inputs = {
3
3
+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
4
4
+
};
5
5
+
6
6
+
outputs = { self, nixpkgs }:
7
7
+
let
8
8
+
pkgs = import nixpkgs { system = "x86_64-linux"; };
9
9
+
in {
10
10
+
devShells.x86_64-linux.default = pkgs.mkShell {
11
11
+
packages = with pkgs; [
12
12
+
tree-sitter clang nodejs
13
13
+
#rustc cargo clippy rustfmt inetutils python3
14
14
+
];
15
15
+
#RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
16
16
+
};
17
17
+
};
18
18
+
}