erlang-ls: fix build

This commit is contained in:
Domen Kožar 2023-03-13 11:24:58 +00:00
parent 755c177ff9
commit 06e575573c

View File

@ -30,10 +30,9 @@ rebar3Relx {
releaseType = "escript";
beamDeps = builtins.attrValues deps;
# Skip "els_hover_SUITE" test for Erlang/OTP 25+ while upstream hasn't fixed it
# https://github.com/erlang-ls/erlang_ls/pull/1402
postPatch = lib.optionalString (lib.versionOlder "25" erlang.version) ''
rm apps/els_lsp/test/els_hover_SUITE.erl
# https://github.com/erlang-ls/erlang_ls/issues/1429
postPatch = ''
rm apps/els_lsp/test/els_diagnostics_SUITE.erl
'';
buildPlugins = [ rebar3-proper ];