about summary refs log tree commit diff
path: root/tools/perf-flamegraph-pid/default.nix
blob: d3b3e1efef0fef2bd4ea862692621ea7502265c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenvNoCC, pkgs, config }:

stdenvNoCC.mkDerivation rec {
  pname = "perf-flamegraph-pid";
  src = ./perf-flamegraph-pid.sh;
  version = "0.1.0";

  nativeBuildInputs = with pkgs; [ flamegraph linuxPackages_latest.perf ];

  dontUnpack = true;
  dontBuild = true;

  installPhase = ''
    mkdir -p $out/bin
    cp $src $out/bin/${pname}
  '';

  meta = with lib; {
    description = "Generate a process' flame graph.";
    license = with licenses; [ mit ];
    platforms = platforms.unix;
    maintainers = with maintainers; [ fcuny ];
  };
}