12 lines
348 B
Nix
12 lines
348 B
Nix
{ buildGrammar, fetchFromGitHub, pkgs, }:
|
|
buildGrammar {
|
|
language = "c-sharp";
|
|
version = "0.20.0-master";
|
|
src = fetchFromGitHub {
|
|
owner = "tree-sitter";
|
|
repo = "tree-sitter-c-sharp";
|
|
rev = "1648e21b4f087963abf0101ee5221bb413107b07";
|
|
hash = "sha256-WvkHtw8t14UNqiJvmS9dbGYQSVVzHS9mcWzxq+KLMnU=";
|
|
};
|
|
}
|