Compare commits

...

2 commits

Author SHA1 Message Date
c3eed57f9a Revert "fix: install_dir patching after upstream 972f378653c794b0ff82282a844732695064b70f"
Some checks failed
CI / build (push) Has been cancelled
This reverts commit f278083569, due to the
change being reverted in f873ec2955098fc4b7c3abfe891bdd49fa7947e2
upstream.
2026-03-15 14:29:04 -05:00
iofq
841355a6c6 chore: update flake inputs + generated.nix 2026-03-15 14:29:04 -05:00
2 changed files with 4 additions and 4 deletions

6
flake.lock generated
View file

@ -19,11 +19,11 @@
"nvim-treesitter": { "nvim-treesitter": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1773472551, "lastModified": 1773513967,
"narHash": "sha256-hD5b0inN+Jb9SJf/t6DhnY0I5Z1PiTzLbiA4W7+MkV4=", "narHash": "sha256-dY2Hx0WSwLDKhA/Uv9+BiQo5MwDiibuiglDG2ApSZM0=",
"owner": "nvim-treesitter", "owner": "nvim-treesitter",
"repo": "nvim-treesitter", "repo": "nvim-treesitter",
"rev": "eb1f8e80cb28eb7892f347609e0bdc5eb574b945", "rev": "2f5d4c3f3c675962242096bcc8e586d76dd72eb2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -79,7 +79,7 @@ let
# patch nvim-treesitter with parser bundle path # patch nvim-treesitter with parser bundle path
ln -sfT ${bundle}/parser $out/parser ln -sfT ${bundle}/parser $out/parser
substituteInPlace $out/lua/nvim-treesitter/config.lua \ substituteInPlace $out/lua/nvim-treesitter/config.lua \
--replace-fail "install_dir = vim.fs.joinpath(vim.fn.stdpath('data') --[[@as string]], 'site/')," \ --replace-fail "install_dir = vim.fs.joinpath(vim.fn.stdpath('data') --[[@as string]], 'site')," \
"install_dir = '$out'" "install_dir = '$out'"
''; '';
}); });