Skip to content

Commit

Permalink
Merge pull request #108690 from MetaDark/texlab
Browse files Browse the repository at this point in the history
texlab: 2.2.0 -> 2.2.1
  • Loading branch information
doronbehar authored Jan 7, 2021
2 parents cc8db6e + 5383c54 commit f211631
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkgs/development/tools/misc/texlab/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ stdenv
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, installShellFiles
Expand All @@ -7,28 +8,28 @@

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

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

cargoSha256 = "0iibjh2ll181j69vld1awvjgyv3xwmq0abh10651la4k4jpppx46";
cargoSha256 = "0pf8j202rpglcxamsr8r3wwmgsdgih24m52vh1q85l93vj7jkm1v";

nativeBuildInputs = [ installShellFiles ];

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

postInstall = ''
installManPage texlab.1
'';

meta = with stdenv.lib; {
meta = with lib; {
description = "An implementation of the Language Server Protocol for LaTeX";
homepage = "https://texlab.netlify.com/";
homepage = "https://texlab.netlify.app";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar metadark ];
};
Expand Down

0 comments on commit f211631

Please sign in to comment.