Skip to content

Commit

Permalink
typst-lsp: mark as broken
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage authored and alyssais committed Aug 17, 2024
1 parent 2e7880b commit c0629bc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkgs/development/tools/language-servers/typst-lsp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,15 @@ rustPlatform.buildRustPackage rec {
export HOME=$(mktemp -d)
'';

meta = with lib; {
meta = {
description = "Brand-new language server for Typst";
homepage = "https://github.com/nvarner/typst-lsp";
mainProgram = "typst-lsp";
changelog = "https://github.com/nvarner/typst-lsp/releases/tag/${src.rev}";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ figsoda GaetanLepage ];
license = with lib.licenses; [ asl20 mit ];
maintainers = with lib.maintainers; [ figsoda GaetanLepage ];
# Incompatible with Rust >= 1.80
# Fix to be merged upstream: https://github.com/nvarner/typst-lsp/pull/515
broken = true;
};
}

0 comments on commit c0629bc

Please sign in to comment.