mvnd: init at 1.0.2

This commit is contained in:
Nathan Regner
2024-11-05 19:05:25 -07:00
parent b8fd64f2e6
commit d64c6bdc87
+109
View File
@@ -0,0 +1,109 @@
{
darwin,
fetchFromGitHub,
graalvmCEPackages,
installShellFiles,
lib,
makeWrapper,
maven,
mvnd,
nix-update-script,
runCommand,
stdenv,
testers,
}:
let
platformMap = {
aarch64-darwin = "darwin-aarch64";
aarch64-linux = "linux-aarch64";
x86_64-darwin = "darwin-amd64";
x86_64-linux = "linux-amd64";
};
in
maven.buildMavenPackage rec {
pname = "mvnd";
version = "1.0.2";
src = fetchFromGitHub {
owner = "apache";
repo = "maven-mvnd";
rev = version;
sha256 = "sha256-c1jD7m4cOdPWQEoaUMcNap2zvvX7H9VaWQv8JSgAnRU=";
};
# need graalvm at build-time for the `native-image` tool
mvnJdk = graalvmCEPackages.graalvm-ce;
mvnHash = "sha256-Bx0XSnpHNxNX07uVPc18py9qbnG5b3b7J4vs44ty034=";
nativeBuildInputs = [
graalvmCEPackages.graalvm-ce
installShellFiles
makeWrapper
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk_11_0.frameworks.Foundation ];
mvnDepsParameters = mvnParameters;
mvnParameters = lib.concatStringsSep " " [
"-Dmaven.buildNumber.skip=true" # skip build number generation; requires a git repository
"-Drat.skip=true" # skip license checks; they require manaul approval and should have already been run upstream
"-Dspotless.skip=true" # skip formatting checks
# skip tests that fail in the sandbox
"-pl"
"!integration-tests"
"-Dtest=!org.mvndaemon.mvnd.client.OsUtilsTest,!org.mvndaemon.mvnd.cache.impl.CacheFactoryTest"
"-Dsurefire.failIfNoSpecifiedTests=false"
"-Pnative"
# propagate linker args required by the darwin build
# see `buildGraalvmNativeImage`
''-Dgraalvm-native-static-opt="-H:-CheckToolchain $(export -p | sed -n 's/^declare -x \([^=]\+\)=.*$/ -E\1/p' | tr -d \\n)"''
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/mvnd-home
cp -r dist/target/maven-mvnd-${version}-${platformMap.${stdenv.system}}/* $out/mvnd-home
makeWrapper $out/mvnd-home/bin/mvnd $out/bin/mvnd \
--set-default MVND_HOME $out/mvnd-home
installShellCompletion --cmd mvnd \
--bash $out/mvnd-home/bin/mvnd-bash-completion.bash
runHook postInstall
'';
passthru =
{
updateScript = nix-update-script { };
}
// (lib.optionalAttrs (!stdenv.hostPlatform.isDarwin) {
tests.version = testers.testVersion {
# `java` or `JAVA_HOME` is required to run mvnd
# presumably the user already has a JDK installed if they're using maven; don't pull in an unnecessary runtime dependency
package =
runCommand "mvnd"
{
inherit version;
nativeBuildInputs = [ makeWrapper ];
}
''
mkdir -p $out/bin
makeWrapper ${mvnd}/bin/mvnd $out/bin/mvnd \
--suffix PATH : ${lib.makeBinPath [ mvnJdk ]}
'';
};
});
meta = {
description = "The Apache Maven Daemon";
homepage = "https://maven.apache.org/";
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ nathanregner ];
mainProgram = "mvnd";
};
}