about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2021-01-07 19:50:35 +0200
committerGitHub <noreply@github.com>2021-01-07 19:50:35 +0200
commitf211631c1cb3e94828c7650b5d12c1e5a89e0e16 (patch)
treeeb5fb90230d623d20eff89f3b5d505c03c5269a0 /pkgs
parentcc8db6e19b876e0ee484d8e186fc689ce1e18f6b (diff)
parent5383c549b7aa96d9b64363387a919ca4bf145399 (diff)
downloadnixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.tar
nixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.tar.gz
nixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.tar.bz2
nixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.tar.lz
nixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.tar.xz
nixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.tar.zst
nixlib-f211631c1cb3e94828c7650b5d12c1e5a89e0e16.zip
Merge pull request #108690 from MetaDark/texlab
texlab: 2.2.0 -> 2.2.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/texlab/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/tools/misc/texlab/default.nix b/pkgs/development/tools/misc/texlab/default.nix
index 8b734bdd1c18..787f6e3c33ca 100644
--- a/pkgs/development/tools/misc/texlab/default.nix
+++ b/pkgs/development/tools/misc/texlab/default.nix
@@ -1,4 +1,5 @@
-{ stdenv
+{ lib
+, stdenv
 , rustPlatform
 , fetchFromGitHub
 , installShellFiles
@@ -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 ];
   };