summary refs log tree commit diff
path: root/pkgs/development/tools/async-profiler
diff options
context:
space:
mode:
authorMaxim Schuwalow <maxim.schuwalow@gmail.com>2021-03-11 10:26:08 +0100
committerMaxim Schuwalow <maxim.schuwalow@gmail.com>2021-03-11 14:00:40 +0100
commit9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b (patch)
tree0df8840d62b9b8939e1146fd895fefb422fc7705 /pkgs/development/tools/async-profiler
parentd211397507f5321d53fc6bf9282adb5aed5909ca (diff)
downloadnixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.tar
nixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.tar.gz
nixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.tar.bz2
nixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.tar.lz
nixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.tar.xz
nixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.tar.zst
nixpkgs-9b4a5f56ddc04ffb1327fe474b65dbbd2c8b624b.zip
async-profiler: init at 1.8.4
Diffstat (limited to 'pkgs/development/tools/async-profiler')
-rw-r--r--pkgs/development/tools/async-profiler/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/tools/async-profiler/default.nix b/pkgs/development/tools/async-profiler/default.nix
new file mode 100644
index 00000000000..3d887d6c893
--- /dev/null
+++ b/pkgs/development/tools/async-profiler/default.nix
@@ -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;
+  };
+}