mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildBazelPackage,
|
|
fetchFromGitHub,
|
|
bazel_6,
|
|
jdk,
|
|
elfutils,
|
|
libcap,
|
|
}:
|
|
|
|
buildBazelPackage rec {
|
|
pname = "perf_data_converter";
|
|
version = "0-unstable-2024-07-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "perf_data_converter";
|
|
rev = "5b27c287a57811db91d40b5776cbaedd00945afc";
|
|
hash = "sha256-A5DEDi52gp1gTugGnutmKNRa/GGsc+LKLE3xRl/1gbw=";
|
|
};
|
|
|
|
bazel = bazel_6;
|
|
bazelFlags = [
|
|
"--java_runtime_version=local_jdk"
|
|
"--tool_java_runtime_version=local_jdk"
|
|
];
|
|
|
|
fetchAttrs = {
|
|
sha256 = "sha256-Qm6Ng9cXvKx043P7qyNHyyMvdGK9aNarX1ZKeCp3mgY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ jdk ];
|
|
|
|
buildInputs = [
|
|
elfutils
|
|
libcap
|
|
];
|
|
|
|
removeRulesCC = false;
|
|
|
|
bazelBuildFlags = [ "-c opt" ];
|
|
bazelTargets = [ "src:perf_to_profile" ];
|
|
|
|
bazelTestTargets = [ "src:all" ];
|
|
|
|
buildAttrs = {
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm555 -t "$out/bin" bazel-bin/src/perf_to_profile
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool to convert Linux perf files to the profile.proto format used by pprof";
|
|
homepage = "https://github.com/google/perf_data_converter";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ hzeller ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|