diff options
Diffstat (limited to 'pkgs/sources/tree-sitter-yts/default.nix')
-rw-r--r-- | pkgs/sources/tree-sitter-yts/default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/sources/tree-sitter-yts/default.nix b/pkgs/sources/tree-sitter-yts/default.nix new file mode 100644 index 00000000..7e15481c --- /dev/null +++ b/pkgs/sources/tree-sitter-yts/default.nix @@ -0,0 +1,11 @@ +[ + ( + final: prev: { + yts-grammar = (prev.callPackage ./package.nix {}) { + language = "yts"; + version = "1.0"; + src = ./.; + }; + } + ) +] |