typst-lsp: mark as broken

authored by Gaetan Lepage and committed by Alyssa Ross c0629bcd 2e7880b2

+6 -3
+6 -3
pkgs/development/tools/language-servers/typst-lsp/default.nix
··· 44 44 export HOME=$(mktemp -d) 45 45 ''; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Brand-new language server for Typst"; 49 49 homepage = "https://github.com/nvarner/typst-lsp"; 50 50 mainProgram = "typst-lsp"; 51 51 changelog = "https://github.com/nvarner/typst-lsp/releases/tag/${src.rev}"; 52 - license = with licenses; [ asl20 mit ]; 53 - maintainers = with maintainers; [ figsoda GaetanLepage ]; 52 + license = with lib.licenses; [ asl20 mit ]; 53 + maintainers = with lib.maintainers; [ figsoda GaetanLepage ]; 54 + # Incompatible with Rust >= 1.80 55 + # Fix to be merged upstream: https://github.com/nvarner/typst-lsp/pull/515 56 + broken = true; 54 57 }; 55 58 }