Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 164e07922ddf
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 95105fd37e1f
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 27, 2020

  1. texlab: 2.1.0 -> 2.2.0

    kira-bruneau committed May 27, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    2bbf998 View commit details
  2. texlab: install manpage

    marsam committed May 27, 2020
    Copy the full SHA
    57800e9 View commit details

Commits on May 28, 2020

  1. Merge pull request #89060 from MetaDark/texlab

    texlab: 2.1.0 -> 2.2.0
    marsam authored May 28, 2020
    Copy the full SHA
    95105fd View commit details
Showing with 10 additions and 3 deletions.
  1. +10 −3 pkgs/development/tools/misc/texlab/default.nix
13 changes: 10 additions & 3 deletions pkgs/development/tools/misc/texlab/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
{ stdenv
, rustPlatform
, fetchFromGitHub
, installShellFiles
, Security
}:

rustPlatform.buildRustPackage rec {
pname = "texlab";
version = "2.1.0";
version = "2.2.0";

src = fetchFromGitHub {
owner = "latex-lsp";
repo = pname;
rev = "v${version}";
sha256 = "0cmciadiknw6w573v71spzf5ydaz2xxm2snv3n1hks732nahlr56";
sha256 = "0iydkbmx9z7xpwaif0han5jvy9xh1afmfyldl7fcyy4r906dsmhx";
};

cargoSha256 = "0dhbbni8ia0dkwjacx5jlr5rj7173nsbivm9gjsx9j8ais0f0hff";
cargoSha256 = "0iibjh2ll181j69vld1awvjgyv3xwmq0abh10651la4k4jpppx46";

nativeBuildInputs = [ installShellFiles ];

buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];

postInstall = ''
installManPage texlab.1
'';

meta = with stdenv.lib; {
description = "An implementation of the Language Server Protocol for LaTeX";
homepage = "https://texlab.netlify.com/";