72 lines
2.3 KiB
Nix
72 lines
2.3 KiB
Nix
{ lib, elixir, fetchFromGitHub, fetchMixDeps, mixRelease }:
|
|
# Based on the work of Hauleth
|
|
# None of this would have happened without him
|
|
|
|
mixRelease rec {
|
|
pname = "elixir-ls";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elixir-lsp";
|
|
repo = "elixir-ls";
|
|
rev = "v{version}";
|
|
sha256 = "0d0hqc35hfjkpm88vz21mnm2a9rxiqfrdi83whhhh6d2ba216b7s";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
mixDeps = fetchMixDeps {
|
|
pname = "mix-deps-${pname}";
|
|
inherit src version;
|
|
sha256 = "0r9x223imq4j9pn9niskyaybvk7jmq8dxcyzk7kwfsi128qig1a1";
|
|
};
|
|
|
|
# elixir_ls is an umbrella app
|
|
# override configurePhase to not skip umbrella children
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
mix deps.compile --no-deps-check
|
|
runHook postConfigure
|
|
'';
|
|
|
|
# elixir_ls require a special step for release
|
|
# compile and release need to be performed together because
|
|
# of the no-deps-check requirement
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
mix do compile --no-deps-check, elixir_ls.release
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp -Rv release $out/lib
|
|
# Prepare the wrapper script
|
|
substitute release/language_server.sh $out/bin/elixir-ls \
|
|
--replace 'exec "''${dir}/launch.sh"' "exec $out/lib/launch.sh"
|
|
chmod +x $out/bin/elixir-ls
|
|
# prepare the launcher
|
|
substituteInPlace $out/lib/launch.sh \
|
|
--replace "ERL_LIBS=\"\$SCRIPTPATH:\$ERL_LIBS\"" \
|
|
"ERL_LIBS=$out/lib:\$ERL_LIBS" \
|
|
--replace "exec elixir" "exec ${elixir}/bin/elixir"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/elixir-lsp/elixir-ls";
|
|
description = ''
|
|
A frontend-independent IDE "smartness" server for Elixir.
|
|
Implements the "Language Server Protocol" standard and provides debugger support via the "Debug Adapter Protocol"
|
|
'';
|
|
longDescription = ''
|
|
The Elixir Language Server provides a server that runs in the background, providing IDEs, editors, and other tools with information about Elixir Mix projects.
|
|
It adheres to the Language Server Protocol, a standard for frontend-independent IDE support.
|
|
Debugger integration is accomplished through the similar VS Code Debug Protocol.
|
|
'';
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = teams.beam.members;
|
|
};
|
|
}
|