diff options
author | Soispha <soispha@vhack.eu> | 2024-01-19 18:55:21 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-19 18:55:21 +0100 |
commit | 849cd60632c2da99a4035e614266b0aa86612f4f (patch) | |
tree | 55372bc6c1f6424d84c75085ca0a3b4d12b4dabb /sys/nixpkgs/pkgs/tree-sitter-yts/Cargo.toml | |
parent | feat(flake): Add `pkgs` subattribute (diff) | |
download | nixos-config-849cd60632c2da99a4035e614266b0aa86612f4f.zip |
feat(hm/conf/nvim/plgs/treesitter): Add custom parser for `yts`
Diffstat (limited to '')
-rw-r--r-- | sys/nixpkgs/pkgs/tree-sitter-yts/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sys/nixpkgs/pkgs/tree-sitter-yts/Cargo.toml b/sys/nixpkgs/pkgs/tree-sitter-yts/Cargo.toml new file mode 100644 index 00000000..9756d2fe --- /dev/null +++ b/sys/nixpkgs/pkgs/tree-sitter-yts/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tree-sitter-yts" +description = "yts grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "yts"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-yts" +edition = "2018" +license = "MIT" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "~0.20.10" + +[build-dependencies] +cc = "1.0" |