nixpkgs/pkgs/development/tools/cargo-flamegraph/default.nix
2019-07-10 14:29:28 +02:00

30 lines
801 B
Nix

{ stdenv, fetchFromGitHub, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-flamegraph";
version = "0.1.13";
src = fetchFromGitHub {
owner = "ferrous-systems";
repo = "flamegraph";
rev = version;
sha256 = "1s0jnj78fqz5hlgq656rr2s9ykmia51b89iffadiw6c2aw4fhv1a";
};
cargoSha256 = "0kmw2n4j5bisac0bv3npbwfz2z00ncd6w8ichwaz5hac5mi1a72f";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [
Security
];
meta = with stdenv.lib; {
description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3";
homepage = https://github.com/ferrous-systems/flamegraph;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ killercup ];
platforms = platforms.all;
};
}