texlab: 1.9.0 -> 1.10.0 (#79885)

This commit is contained in:
Kira Bruneau 2020-02-13 22:35:02 -05:00 committed by GitHub
parent 95ee2c8e26
commit 0509ce6408
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,21 @@
{ stdenv
, rustPlatform
, fetchFromGitHub
, nodejs
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "texlab";
version = "1.9.0";
version = "1.10.0";
src = fetchFromGitHub {
owner = "latex-lsp";
repo = pname;
# 1.9.0 + patches for building citeproc-db, see https://github.com/latex-lsp/texlab/pull/137
rev = "e38fe4bedc9d8094649a9d2753ca9855e0c18882";
sha256 = "0j87gmzyqrpgxrgalvlfqj5cj8j0h23hbbv8vdz2dhc847xhhfq1";
rev = "v${version}";
sha256 = "12zfcvbihirh38xxzc8fbx293m4vsrhq6kh0qnhnhlrx75m09l9i";
};
cargoSha256 = "09d9r7aal1q00idv08zdw7dygyasyp5l6jrh96cdclf63h1p4fk9";
cargoSha256 = "11labj3zf7ahbly1ylwliqhxzydbxz9w8z991575daj7a2nbw1q0";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];