dotfiles/nix/base-system/nvim-treesitter-csharp.nix

12 lines
348 B
Nix
Raw Normal View History

2023-08-22 17:53:41 -04:00
{ buildGrammar, fetchFromGitHub, pkgs, }:
buildGrammar {
language = "c-sharp";
version = "0.20.0-master";
src = fetchFromGitHub {
owner = "tree-sitter";
repo = "tree-sitter-c-sharp";
rev = "1648e21b4f087963abf0101ee5221bb413107b07";
2023-09-11 10:26:01 -04:00
hash = "sha256-WvkHtw8t14UNqiJvmS9dbGYQSVVzHS9mcWzxq+KLMnU=";
2023-08-22 17:53:41 -04:00
};
}