mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
2aa26f0fcc
Diff: https://github.com/jonhoo/inferno/compare/v0.11.14...v0.11.15 Changelog: https://github.com/jonhoo/inferno/blob/v0.11.15/CHANGELOG.md
31 lines
820 B
Nix
31 lines
820 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "inferno";
|
|
version = "0.11.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonhoo";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-fyTsB+1ftol3prNLydT/coLchip1vijmfLLt3/DnBbc=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoHash = "sha256-XBah55xfbWjQrkupebZE2uiveFhh/R0BF1KEKkY5Hx8=";
|
|
|
|
# skip flaky tests
|
|
checkFlags = [
|
|
"--skip=flamegraph_base_symbol"
|
|
"--skip=flamegraph_multiple_base_symbol"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A port of parts of the flamegraph toolkit to Rust";
|
|
homepage = "https://github.com/jonhoo/inferno";
|
|
changelog = "https://github.com/jonhoo/inferno/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.cddl;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|