mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 06:33:42 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
64 lines
2.0 KiB
Nix
64 lines
2.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, jdk_headless, maven
|
|
, makeWrapper
|
|
}:
|
|
|
|
let
|
|
platform =
|
|
if stdenv.hostPlatform.isLinux then "linux"
|
|
else if stdenv.hostPlatform.isDarwin then "mac"
|
|
else if stdenv.hostPlatform.isWindows then "windows"
|
|
else throw "unsupported platform";
|
|
in
|
|
maven.buildMavenPackage rec {
|
|
pname = "java-language-server";
|
|
version = "0.2.46";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "georgewfraser";
|
|
repo = pname;
|
|
# commit hash is used as owner sometimes forgets to set tags. See https://github.com/georgewfraser/java-language-server/issues/104
|
|
rev = "d7f4303cd233cdad84daffbb871dd4512a2c8da2";
|
|
sha256 = "sha256-BIcfwz+pLQarnK8XBPwDN2nrdvK8xqUo0XFXk8ZV/h0=";
|
|
};
|
|
|
|
mvnFetchExtraArgs.dontConfigure = true;
|
|
mvnJdk = jdk_headless;
|
|
mvnHash = "sha256-2uthmSjFQ43N5lgV11DsxuGce+ZptZsmRLTgjDo0M2w=";
|
|
|
|
nativeBuildInputs = [ jdk_headless makeWrapper ];
|
|
|
|
dontConfigure = true;
|
|
preBuild = ''
|
|
jlink \
|
|
${lib.optionalString (!stdenv.hostPlatform.isDarwin) "--module-path './jdks/${platform}/jdk-13/jmods'"} \
|
|
--add-modules java.base,java.compiler,java.logging,java.sql,java.xml,jdk.compiler,jdk.jdi,jdk.unsupported,jdk.zipfs \
|
|
--output dist/${platform} \
|
|
--no-header-files \
|
|
--no-man-pages \
|
|
--compress 2
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/java/java-language-server
|
|
cp -r dist/classpath dist/*${platform}* $out/share/java/java-language-server
|
|
|
|
# a link is not used as lang_server_${platform}.sh makes use of "dirname $0" to access other files
|
|
makeWrapper $out/share/java/java-language-server/lang_server_${platform}.sh $out/bin/java-language-server
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Java language server based on v3.0 of the protocol and implemented using the Java compiler API";
|
|
mainProgram = "java-language-server";
|
|
homepage = "https://github.com/georgewfraser/java-language-server";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hqurve ];
|
|
};
|
|
}
|