lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

texlab: 5.10.1 -> 5.11.0

https://github.com/latex-lsp/texlab/blob/v5.11.0/CHANGELOG.md

+5 -4
+5 -4
pkgs/development/tools/misc/texlab/default.nix
··· 15 15 in 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "texlab"; 18 - version = "5.10.1"; 18 + version = "5.11.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "latex-lsp"; 22 22 repo = "texlab"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-ACdiFkV138jDIrRe+baYo+r9vCO4cyRyO2ck7OKakFY="; 24 + hash = "sha256-bN2LvuB/BD21SL5fG9QNPpR9hUk52U2BJJ6TFMhwDBk="; 25 25 }; 26 26 27 - cargoHash = "sha256-bEeQOOucXd4HNTR6SmidAfDkZ1tT7ORmUxrNx+3FNRw="; 27 + cargoHash = "sha256-V4hANIkReF7EEtFsBv1hA/Ftre6YQPs69LpG/GR0Egc="; 28 28 29 29 outputs = [ "out" ] ++ lib.optional (!isCross) "man"; 30 30 ··· 41 41 # generate the man page 42 42 postInstall = lib.optionalString (!isCross) '' 43 43 # TexLab builds man page separately in CI: 44 - # https://github.com/latex-lsp/texlab/blob/v5.10.1/.github/workflows/publish.yml#L117-L121 44 + # https://github.com/latex-lsp/texlab/blob/v5.11.0/.github/workflows/publish.yml#L117-L121 45 45 help2man --no-info "$out/bin/texlab" > texlab.1 46 46 installManPage texlab.1 47 47 ''; ··· 51 51 meta = with lib; { 52 52 description = "An implementation of the Language Server Protocol for LaTeX"; 53 53 homepage = "https://github.com/latex-lsp/texlab"; 54 + changelog = "https://github.com/latex-lsp/texlab/blob/v${version}/CHANGELOG.md"; 54 55 license = licenses.mit; 55 56 maintainers = with maintainers; [ doronbehar kira-bruneau ]; 56 57 platforms = platforms.all;