Unverified Commit 57116af1 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

Merge pull request #202489 from r-ryantm/auto-update/texlab

texlab: 4.3.1 -> 4.3.2
parents 3794e682 7c8d7b8d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -15,16 +15,16 @@ let
in
rustPlatform.buildRustPackage rec {
  pname = "texlab";
  version = "4.3.1";
  version = "4.3.2";

  src = fetchFromGitHub {
    owner = "latex-lsp";
    repo = "texlab";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-gtPnuKmKfUBZDM6DATJB5NxndOwvG5JpBRO4cEU6lIU=";
    sha256 = "sha256-og/kDSoMaTNi+EpTHEwOlEkT8Y/UL8nLiqwjDFAUACg=";
  };

  cargoSha256 = "sha256-nu2KltPgexBTxG13kUgHgMrxefPD+Gaj5qBIWWFPdFs=";
  cargoSha256 = "sha256-g3Uzohcy2AS7ybdyZqKQR7ybmSQmit8I9klZ0UIhiv8=";

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

@@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec {
  # generate the man page
  postInstall = lib.optionalString (!isCross) ''
    # TexLab builds man page separately in CI:
    # https://github.com/latex-lsp/texlab/blob/v4.3.1/.github/workflows/publish.yml#L126-L130
    # https://github.com/latex-lsp/texlab/blob/v4.3.2/.github/workflows/publish.yml#L126-L130
    help2man --no-info "$out/bin/texlab" > texlab.1
    installManPage texlab.1
  '';