eb11feaa0b
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, perf
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-flamegraph";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flamegraph-rs";
|
|
repo = "flamegraph";
|
|
rev = "v${version}";
|
|
sha256 = "1avjq36wnm0gd5zkkv1c8hj8j51ah1prlifadjhpaf788rsng9w1";
|
|
};
|
|
|
|
# Delete this on next update; see #79975 for details
|
|
legacyCargoFetcher = true;
|
|
|
|
cargoSha256 = "1kmxpzgv24hf66gzyapxy48gzwqi0p0jvzv829sfdlp00qgj1kp4";
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
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; {
|
|
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;
|
|
};
|
|
}
|