tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
vscode-extensions.ndonfris.fish-lsp: init at 0.1.10
mivorasu
6 months ago
0840de88
c887782e
+23
2 changed files
expand all
collapse all
unified
split
pkgs
applications
editors
vscode
extensions
default.nix
ndonfris.fish-lsp
default.nix
+2
pkgs/applications/editors/vscode/extensions/default.nix
···
3650
3650
};
3651
3651
};
3652
3652
3653
3653
+
ndonfris.fish-lsp = callPackage ./ndonfris.fish-lsp { };
3654
3654
+
3653
3655
nefrob.vscode-just-syntax = buildVscodeMarketplaceExtension {
3654
3656
mktplcRef = {
3655
3657
name = "vscode-just-syntax";
+21
pkgs/applications/editors/vscode/extensions/ndonfris.fish-lsp/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
vscode-utils,
4
4
+
}:
5
5
+
6
6
+
vscode-utils.buildVscodeMarketplaceExtension {
7
7
+
mktplcRef = {
8
8
+
publisher = "ndonfris";
9
9
+
name = "fish-lsp";
10
10
+
version = "0.1.10";
11
11
+
hash = "sha256-aMuvBc2QVlRXpoBvWQaxC5SdwWzsauvVk1zMbK1p6oQ=";
12
12
+
};
13
13
+
14
14
+
meta = {
15
15
+
description = "LSP implementation for the fish shell language";
16
16
+
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ndonfris.fish-lsp";
17
17
+
homepage = "https://github.com/ndonfris/fish-lsp";
18
18
+
license = lib.licenses.mit;
19
19
+
maintainers = with lib.maintainers; [ tuynia ];
20
20
+
};
21
21
+
}