2020-03-19 13:13:23 +00:00
|
|
|
{ stdenv, fetchzip, lib, makeWrapper, makeDesktopItem, jdk, gawk }:
|
2016-08-15 03:45:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-04-28 18:47:36 +00:00
|
|
|
version = "2.0.7";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "visualvm";
|
2016-08-15 03:45:48 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
2018-04-18 02:01:39 +00:00
|
|
|
url = "https://github.com/visualvm/visualvm.src/releases/download/${version}/visualvm_${builtins.replaceStrings ["."] [""] version}.zip";
|
2021-04-28 18:47:36 +00:00
|
|
|
sha256 = "sha256-IbiyrP3rIj3VToav1bhKnje0scEPSyLwsyclpW7nB+U=";
|
2018-04-18 02:01:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "visualvm";
|
|
|
|
exec = "visualvm";
|
|
|
|
comment = "Java Troubleshooting Tool";
|
|
|
|
desktopName = "VisualVM";
|
|
|
|
genericName = "Java Troubleshooting Tool";
|
2020-06-25 02:18:37 +00:00
|
|
|
categories = "Development;";
|
2016-08-15 03:45:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-04-18 02:01:39 +00:00
|
|
|
find . -type f -name "*.dll" -o -name "*.exe" -delete;
|
2016-08-15 03:45:48 +00:00
|
|
|
|
|
|
|
substituteInPlace etc/visualvm.conf \
|
|
|
|
--replace "#visualvm_jdkhome=" "visualvm_jdkhome=" \
|
|
|
|
--replace "/path/to/jdk" "${jdk.home}" \
|
|
|
|
|
|
|
|
cp -r . $out
|
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2016-08-15 03:45:48 +00:00
|
|
|
description = "A visual interface for viewing information about Java applications";
|
|
|
|
longDescription = ''
|
|
|
|
VisualVM is a visual tool integrating several commandline JDK
|
|
|
|
tools and lightweight profiling capabilities. Designed for both
|
|
|
|
production and development time use, it further enhances the
|
|
|
|
capability of monitoring and performance analysis for the Java
|
|
|
|
SE platform.
|
|
|
|
'';
|
2019-10-12 00:13:45 +00:00
|
|
|
homepage = "https://visualvm.github.io";
|
2016-08-15 03:45:48 +00:00
|
|
|
license = licenses.gpl2ClasspathPlus;
|
|
|
|
platforms = platforms.all;
|
2018-04-18 02:01:39 +00:00
|
|
|
maintainers = with maintainers; [ michalrus moaxcp ];
|
2016-08-15 03:45:48 +00:00
|
|
|
};
|
|
|
|
}
|