Skip to content

Commit 144db67

Browse files
authored
texlab: 5.19.0 -> 5.20.0 (#347995)
2 parents c9a3c89 + df6592d commit 144db67

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

pkgs/development/tools/misc/texlab/default.nix

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,21 @@ let
1515
in
1616
rustPlatform.buildRustPackage rec {
1717
pname = "texlab";
18-
version = "5.19.0";
18+
version = "5.20.0";
1919

2020
src = fetchFromGitHub {
2121
owner = "latex-lsp";
2222
repo = "texlab";
2323
rev = "refs/tags/v${version}";
24-
hash = "sha256-iH7KqZddP4uKwTBxLLMURUtWBsuEtLHGQppVgGFaWZQ=";
24+
hash = "sha256-hKQdc9p69L0t2MwCR4Fy20Nl+2qQk5JJoCaB4O43DNY=";
2525
};
2626

27-
cargoHash = "sha256-QW+q869bVAMYv4SCj/2eKrADoDonrvQuaHuanZHIjMo=";
27+
cargoHash = "sha256-A/stdJ1baV0hdDXTdLd9gi8+JO7qPgQbNiYjHkp1GPQ=";
28+
29+
# https://github.com/latex-lsp/texlab/pull/1237
30+
preBuild = ''
31+
rm .cargo/config.toml
32+
'';
2833

2934
outputs = [ "out" ] ++ lib.optional (!isCross) "man";
3035

@@ -41,7 +46,7 @@ rustPlatform.buildRustPackage rec {
4146
# generate the man page
4247
postInstall = lib.optionalString (!isCross) ''
4348
# TexLab builds man page separately in CI:
44-
# https://github.com/latex-lsp/texlab/blob/v5.16.1/.github/workflows/publish.yml#L117-L121
49+
# https://github.com/latex-lsp/texlab/blob/v5.20.0/.github/workflows/publish.yml#L110-L114
4550
help2man --no-info "$out/bin/texlab" > texlab.1
4651
installManPage texlab.1
4752
'';

0 commit comments

Comments
 (0)