nixpkgs/pkgs/development/tools/cargo-flamegraph/default.nix

37 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, perf
2019-06-30 15:20:04 +01:00
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-flamegraph";
2020-05-17 03:13:22 +01:00
version = "0.3.0";
2019-06-30 15:20:04 +01:00
src = fetchFromGitHub {
2020-01-26 19:23:19 +00:00
owner = "flamegraph-rs";
2019-06-30 15:20:04 +01:00
repo = "flamegraph";
2020-01-26 19:23:19 +00:00
rev = "v${version}";
2020-05-17 03:13:22 +01:00
sha256 = "0d6k2qr76p93na39j4zbcpc9kaswd806wrqhcwisqxdrcxrjbwhk";
2019-06-30 15:20:04 +01:00
};
2020-05-17 03:13:22 +01:00
cargoSha256 = "1qz4a1b58j3bv3akqvc3bcgvqq4bi8cbm3gzws6a52dz7ycrgq46";
2019-06-30 15:20:04 +01:00
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];
buildInputs = lib.optionals stdenv.isDarwin [
2019-06-30 15:20:04 +01:00
Security
];
postFixup = lib.optionalString stdenv.isLinux ''
wrapProgram $out/bin/cargo-flamegraph \
--suffix PATH ':' ${perf}/bin
wrapProgram $out/bin/flamegraph \
--suffix PATH ':' ${perf}/bin
'';
meta = with lib; {
2019-06-30 15:20:04 +01:00
description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3";
homepage = "https://github.com/ferrous-systems/flamegraph";
2019-06-30 15:20:04 +01:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ killercup ];
};
}