Merge pull request #108690 from MetaDark/texlab

texlab: 2.2.0 -> 2.2.1
This commit is contained in:
Doron Behar 2021-01-07 19:50:35 +02:00 committed by GitHub
commit f211631c1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ stdenv { lib
, stdenv
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
@ -7,28 +8,28 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "texlab"; pname = "texlab";
version = "2.2.0"; version = "2.2.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "latex-lsp"; owner = "latex-lsp";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0iydkbmx9z7xpwaif0han5jvy9xh1afmfyldl7fcyy4r906dsmhx"; sha256 = "1hiy8klig7j0if4iqbb0432iqsnds00aya6p4xmm913qfpsyh6cq";
}; };
cargoSha256 = "0iibjh2ll181j69vld1awvjgyv3xwmq0abh10651la4k4jpppx46"; cargoSha256 = "0pf8j202rpglcxamsr8r3wwmgsdgih24m52vh1q85l93vj7jkm1v";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ]; buildInputs = lib.optionals stdenv.isDarwin [ Security ];
postInstall = '' postInstall = ''
installManPage texlab.1 installManPage texlab.1
''; '';
meta = with stdenv.lib; { meta = with lib; {
description = "An implementation of the Language Server Protocol for LaTeX"; description = "An implementation of the Language Server Protocol for LaTeX";
homepage = "https://texlab.netlify.com/"; homepage = "https://texlab.netlify.app";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ doronbehar metadark ]; maintainers = with maintainers; [ doronbehar metadark ];
}; };