{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, perf, nix-update-script, }: rustPlatform.buildRustPackage rec { pname = "cargo-flamegraph"; version = "0.6.11"; src = fetchFromGitHub { owner = "flamegraph-rs"; repo = "flamegraph"; rev = "v${version}"; sha256 = "sha256-WPWS3NX6t8RNNALqYF2JMLI5HWVhsVmhg9ULZKt972I="; }; cargoHash = "sha256-U/Cs4HRNuxq7RaWHmmLoWbiZgqumSRFRLpe1N/63q+E="; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ makeWrapper ]; postFixup = lib.optionalString stdenv.hostPlatform.isLinux '' wrapProgram $out/bin/cargo-flamegraph \ --set-default PERF ${perf}/bin/perf wrapProgram $out/bin/flamegraph \ --set-default PERF ${perf}/bin/perf ''; passthru.updateScript = nix-update-script { }; meta = { description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3"; homepage = "https://github.com/flamegraph-rs/flamegraph"; license = with lib.licenses; [ asl20 # or mit ]; maintainers = with lib.maintainers; [ killercup matthiasbeyer ]; }; }