Commit 9f07f3bc authored by Kira Bruneau's avatar Kira Bruneau
Browse files

texlab: format with nixpkgs-fmt

parent 0912afd6
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -12,13 +12,14 @@

let
  isCross = stdenv.hostPlatform != stdenv.buildPlatform;
in rustPlatform.buildRustPackage rec {
in
rustPlatform.buildRustPackage rec {
  pname = "texlab";
  version = "4.3.1";

  src = fetchFromGitHub {
    owner = "latex-lsp";
    repo = pname;
    repo = "texlab";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-gtPnuKmKfUBZDM6DATJB5NxndOwvG5JpBRO4cEU6lIU=";
  };