tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
vtsls: 0.2.6 -> 0.2.8
Nathan Regner
1 year ago
a63e9ddf
fb35d81b
+8
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
vt
vtsls
package.nix
+8
-3
pkgs/by-name/vt/vtsls/package.nix
···
5
nodejs_22,
6
gitMinimal,
7
pnpm_8,
0
8
}:
9
10
stdenv.mkDerivation (finalAttrs: {
11
pname = "vtsls";
12
-
version = "0.2.6";
13
14
src = fetchFromGitHub {
15
owner = "yioneko";
16
repo = "vtsls";
17
rev = "server-v${finalAttrs.version}";
18
-
hash = "sha256-HCi9WLh4IEfhgkQNUVk6IGkQfYagg805Rix78zG6xt0=";
19
fetchSubmodules = true;
20
};
21
···
37
src
38
version
39
;
40
-
hash = "sha256-4XxQ0Z2atTBItrD9iY7q5rJaCmb1EeDBvQ5+L3ceRXI=";
41
};
42
43
# Patches to get submodule sha from file instead of 'git submodule status'
···
81
82
runHook postInstall
83
'';
0
0
0
0
84
85
meta = {
86
description = "LSP wrapper for typescript extension of vscode.";
···
5
nodejs_22,
6
gitMinimal,
7
pnpm_8,
8
+
nix-update-script,
9
}:
10
11
stdenv.mkDerivation (finalAttrs: {
12
pname = "vtsls";
13
+
version = "0.2.8";
14
15
src = fetchFromGitHub {
16
owner = "yioneko";
17
repo = "vtsls";
18
rev = "server-v${finalAttrs.version}";
19
+
hash = "sha256-Ng+aOBnxFRbMjoUy6+DvIk2yVpvJT+AMsbvDb+IlYpY=";
20
fetchSubmodules = true;
21
};
22
···
38
src
39
version
40
;
41
+
hash = "sha256-xenPpKsIjEIyVeZDjwjLaBbpWLqWQDBaLLfyzxtrsTI=";
42
};
43
44
# Patches to get submodule sha from file instead of 'git submodule status'
···
82
83
runHook postInstall
84
'';
85
+
86
+
passthru = {
87
+
updateScript = nix-update-script { };
88
+
};
89
90
meta = {
91
description = "LSP wrapper for typescript extension of vscode.";