Merge pull request #320291 from JulienMalka/init-joularjx
joularjx: init at 2.9.0
This commit is contained in:
commit
b96d99b63d
42
pkgs/by-name/jo/joularjx/package.nix
Normal file
42
pkgs/by-name/jo/joularjx/package.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
fetchFromGitHub,
|
||||
maven,
|
||||
makeWrapper,
|
||||
jre,
|
||||
lib,
|
||||
}:
|
||||
|
||||
maven.buildMavenPackage rec {
|
||||
pname = "joularjx";
|
||||
version = "2.9.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "joular";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-/Drv6PVMmz3QNEu8zMokTKBZeYWMjuKczu18qKqNAx4=";
|
||||
};
|
||||
|
||||
mvnHash = "sha256-TKHo0hZBjgBeUWYvbjF3MZ6Egp3qB2LGwWfrGrcVkOk=";
|
||||
|
||||
mvnParameters = "-DskipTests";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/share
|
||||
cp target/joularjx-${version}.jar $out/share/joularjx.jar
|
||||
makeWrapper ${jre}/bin/java $out/bin/joularjx \
|
||||
--add-flags "-javaagent:$out/share/joularjx.jar"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Java-based agent for software power monitoring at the source code level";
|
||||
homepage = "https://github.com/joular/joularjx";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ julienmalka ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user