Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

vscode-extensions.ndonfris.fish-lsp: init at 0.1.10

mivorasu 0840de88 c887782e

+23
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 3650 }; 3651 }; 3652 3653 nefrob.vscode-just-syntax = buildVscodeMarketplaceExtension { 3654 mktplcRef = { 3655 name = "vscode-just-syntax";
··· 3650 }; 3651 }; 3652 3653 + ndonfris.fish-lsp = callPackage ./ndonfris.fish-lsp { }; 3654 + 3655 nefrob.vscode-just-syntax = buildVscodeMarketplaceExtension { 3656 mktplcRef = { 3657 name = "vscode-just-syntax";
+21
pkgs/applications/editors/vscode/extensions/ndonfris.fish-lsp/default.nix
···
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + publisher = "ndonfris"; 9 + name = "fish-lsp"; 10 + version = "0.1.10"; 11 + hash = "sha256-aMuvBc2QVlRXpoBvWQaxC5SdwWzsauvVk1zMbK1p6oQ="; 12 + }; 13 + 14 + meta = { 15 + description = "LSP implementation for the fish shell language"; 16 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=ndonfris.fish-lsp"; 17 + homepage = "https://github.com/ndonfris/fish-lsp"; 18 + license = lib.licenses.mit; 19 + maintainers = with lib.maintainers; [ tuynia ]; 20 + }; 21 + }