mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
jdk,
|
|
makeWrapper,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "async-profiler";
|
|
version = "3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jvm-profiling-tools";
|
|
repo = "async-profiler";
|
|
rev = "v${version}";
|
|
hash = "sha256-0CCJoRjRLq4LpiRD0ibzK8So9qSQymePCTYUI60Oy2k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ jdk ];
|
|
|
|
installPhase =
|
|
let
|
|
ext = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
in
|
|
''
|
|
runHook preInstall
|
|
install -D build/bin/asprof "$out/bin/async-profiler"
|
|
install -D build/lib/libasyncProfiler${ext} "$out/lib/libasyncProfiler${ext}"
|
|
runHook postInstall
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
wrapProgram $out/bin/async-profiler --prefix PATH : ${lib.makeBinPath [ jdk ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
mainProgram = "async-profiler";
|
|
};
|
|
}
|