nixpkgs/pkgs/development/tools/rbspy/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

64 lines
1.6 KiB
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, ruby
, which
, nix-update-script
}:
rustPlatform.buildRustPackage rec {
pname = "rbspy";
version = "0.19.1";
src = fetchFromGitHub {
owner = "rbspy";
repo = "rbspy";
rev = "refs/tags/v${version}";
hash = "sha256-2+miC7cp6YbeI7uucFlSdlDpPboJOhhBq7/eqXxZVqs=";
};
cargoHash = "sha256-I+nh6cKniPIG5VYMMsABZNSP/c3DLWswsjenaQBh/X8=";
# error: linker `aarch64-linux-gnu-gcc` not found
postPatch = ''
rm .cargo/config
'';
doCheck = true;
# The current implementation of rbspy fails to detect the version of ruby
# from nixpkgs during tests.
preCheck = ''
substituteInPlace src/core/process.rs \
--replace /usr/bin/which '${which}/bin/which'
substituteInPlace src/sampler/mod.rs \
--replace /usr/bin/which '${which}/bin/which'
'';
checkFlags = [
"--skip=test_get_trace"
"--skip=test_get_trace_when_process_has_exited"
"--skip=test_sample_single_process"
"--skip=test_sample_single_process_with_time_limit"
"--skip=test_sample_subprocesses"
];
nativeBuildInputs = [
ruby
which
] ++ lib.optional stdenv.isDarwin rustPlatform.bindgenHook;
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://rbspy.github.io/";
description = "A Sampling CPU Profiler for Ruby";
mainProgram = "rbspy";
changelog = "https://github.com/rbspy/rbspy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ viraptor ];
platforms = platforms.linux ++ platforms.darwin;
};
}