Unverified Commit 02ab2e2a authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #176664 from marsam/init-ltex-ls

ltex-ls: init at 15.2.0
parents 835be707 8abfb3fb
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, makeBinaryWrapper, jre_headless }:

stdenv.mkDerivation rec {
  pname = "ltex-ls";
  version = "15.2.0";

  src = fetchurl {
    url = "https://github.com/valentjn/ltex-ls/releases/download/${version}/ltex-ls-${version}.tar.gz";
    sha256 = "sha256-ygjCFjYaP9Lc5BLuOHe5+lyaKpfDhicR783skkBgo7I=";
  };

  nativeBuildInputs = [ makeBinaryWrapper ];

  installPhase = ''
    runHook preInstall

    mkdir -p $out
    cp -rfv bin/ lib/ $out
    rm -fv $out/bin/*.bat
    for file in $out/bin/{ltex-ls,ltex-cli}; do
      wrapProgram $file --set JAVA_HOME "${jre_headless}"
    done

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://valentjn.github.io/ltex/";
    description = "LSP language server for LanguageTool";
    license = licenses.mpl20;
    maintainers = [ maintainers.marsam ];
    platforms = jre_headless.meta.platforms;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -27895,6 +27895,8 @@ with pkgs;
  lsp-plugins = callPackage ../applications/audio/lsp-plugins { php = php74; };
  ltex-ls = callPackage ../tools/text/ltex-ls { };
  luminanceHDR = libsForQt5.callPackage ../applications/graphics/luminance-hdr { };
  lxdvdrip = callPackage ../applications/video/lxdvdrip { };