From 7f6fe468332da598cfc4b684188ed9293a238551 Mon Sep 17 00:00:00 2001 From: poz Date: Sat, 19 Jul 2025 23:02:52 +0200 Subject: [PATCH] languages/wgsl: fix binary path --- modules/plugins/languages/wgsl.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugins/languages/wgsl.nix b/modules/plugins/languages/wgsl.nix index f374543e..44323092 100644 --- a/modules/plugins/languages/wgsl.nix +++ b/modules/plugins/languages/wgsl.nix @@ -26,7 +26,7 @@ cmd = ${ if isList cfg.lsp.package then expToLua cfg.lsp.package - else "{'${cfg.lsp.package}/bin/wgsl_analyzer'}" + else "{'${cfg.lsp.package}/bin/wgsl-analyzer'}" } } '';