Merge pull request #108064 from oxalica/bump/cargo-flamegraph
cargo-flamegraph: 0.3.0 -> 0.4.0 and clean up
This commit is contained in:
commit
0d9e4d223f
@ -1,19 +1,19 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, perf
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, perf, nix-update-script
|
||||||
, Security
|
, Security
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-flamegraph";
|
pname = "cargo-flamegraph";
|
||||||
version = "0.3.0";
|
version = "0.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "flamegraph-rs";
|
owner = "flamegraph-rs";
|
||||||
repo = "flamegraph";
|
repo = "flamegraph";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0d6k2qr76p93na39j4zbcpc9kaswd806wrqhcwisqxdrcxrjbwhk";
|
sha256 = "sha256-IpmvFUWNaFQ1ls7u625vvj1TnRYXR+X1mAGdBcwRFLk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "1qz4a1b58j3bv3akqvc3bcgvqq4bi8cbm3gzws6a52dz7ycrgq46";
|
cargoSha256 = "sha256-2YHkEQZqjKEvg4h9kIVhqmgq+SMF1c3r8UbSQivZh7w=";
|
||||||
|
|
||||||
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
@ -22,11 +22,15 @@ rustPlatform.buildRustPackage rec {
|
|||||||
|
|
||||||
postFixup = lib.optionalString stdenv.isLinux ''
|
postFixup = lib.optionalString stdenv.isLinux ''
|
||||||
wrapProgram $out/bin/cargo-flamegraph \
|
wrapProgram $out/bin/cargo-flamegraph \
|
||||||
--suffix PATH ':' ${perf}/bin
|
--set-default PERF ${perf}/bin/perf
|
||||||
wrapProgram $out/bin/flamegraph \
|
wrapProgram $out/bin/flamegraph \
|
||||||
--suffix PATH ':' ${perf}/bin
|
--set-default PERF ${perf}/bin/perf
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script {
|
||||||
|
attrPath = pname;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3";
|
description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3";
|
||||||
homepage = "https://github.com/ferrous-systems/flamegraph";
|
homepage = "https://github.com/ferrous-systems/flamegraph";
|
||||||
|
Loading…
Reference in New Issue
Block a user