async-profiler: init at 1.8.4
This commit is contained in:
parent
d211397507
commit
9b4a5f56dd
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, jdk8 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "async-profiler";
|
||||||
|
version = "1.8.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jvm-profiling-tools";
|
||||||
|
repo = "async-profiler";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-R/TFElytq3mBG+jKjb7XlFUqpXBpSZGfbscUdg2vevE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ jdk8 ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -D "$src/profiler.sh" "$out/bin/async-profiler"
|
||||||
|
install -D build/jattach "$out/bin/jattach"
|
||||||
|
install -D build/libasyncProfiler.so "$out/lib/libasyncProfiler.so"
|
||||||
|
install -D -t "$out/share/java/" build/*.jar
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
fixupPhase = ''
|
||||||
|
substituteInPlace $out/bin/async-profiler \
|
||||||
|
--replace 'JATTACH=$SCRIPT_DIR/build/jattach' \
|
||||||
|
'JATTACH=${placeholder "out"}/bin/jattach' \
|
||||||
|
--replace 'PROFILER=$SCRIPT_DIR/build/libasyncProfiler.so' \
|
||||||
|
'PROFILER=${placeholder "out"}/lib/libasyncProfiler.so'
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A low overhead sampling profiler for Java that does not suffer from Safepoint bias problem";
|
||||||
|
homepage = "https://github.com/jvm-profiling-tools/async-profiler";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ mschuwalow ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1000,6 +1000,8 @@ in
|
||||||
|
|
||||||
async = callPackage ../development/tools/async {};
|
async = callPackage ../development/tools/async {};
|
||||||
|
|
||||||
|
async-profiler = callPackage ../development/tools/async-profiler { };
|
||||||
|
|
||||||
atheme = callPackage ../servers/irc/atheme { };
|
atheme = callPackage ../servers/irc/atheme { };
|
||||||
|
|
||||||
atinout = callPackage ../tools/networking/atinout { };
|
atinout = callPackage ../tools/networking/atinout { };
|
||||||
|
|
Loading…
Reference in New Issue