tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
starpls: 0.1.22-unstable-2025-12-30 -> 0.1.22
Aaron Jheng
4 months ago
d9c86142
827f86b6
+3
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
st
starpls
package.nix
+3
-5
pkgs/by-name/st/starpls/package.nix
···
7
}:
8
rustPlatform.buildRustPackage (finalAttrs: {
9
pname = "starpls";
10
-
version = "0.1.22-unstable-2025-12-30";
11
12
src = fetchFromGitHub {
13
owner = "withered-magic";
14
repo = "starpls";
15
-
rev = "db21acd3cb24893315dd601484c7d40689589e9a";
16
hash = "sha256-t9kdpBKyGM61CKhtfO5urVVzyKpL0bX0pZuf0djDdCw=";
17
};
18
···
30
tests.version = testers.testVersion {
31
package = finalAttrs.finalPackage;
32
command = "starpls version";
33
-
version = "v${
34
-
lib.strings.substring 0 (builtins.stringLength finalAttrs.version - 6) finalAttrs.version
35
-
}";
36
};
37
};
38
···
7
}:
8
rustPlatform.buildRustPackage (finalAttrs: {
9
pname = "starpls";
10
+
version = "0.1.22";
11
12
src = fetchFromGitHub {
13
owner = "withered-magic";
14
repo = "starpls";
15
+
tag = "v${finalAttrs.version}";
16
hash = "sha256-t9kdpBKyGM61CKhtfO5urVVzyKpL0bX0pZuf0djDdCw=";
17
};
18
···
30
tests.version = testers.testVersion {
31
package = finalAttrs.finalPackage;
32
command = "starpls version";
33
+
version = "v${finalAttrs.version}";
0
0
34
};
35
};
36