blob: beae01a2c57eaf15d89a577e7487b1dada3dbc5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, ruby
, which
, nix-update-script
}:
rustPlatform.buildRustPackage rec {
pname = "rbspy";
version = "0.25.0";
src = fetchFromGitHub {
owner = "rbspy";
repo = "rbspy";
rev = "refs/tags/v${version}";
hash = "sha256-6J+/clldoMSTcZXM4N8THZ3fk2NE9VQ2XyDIzVej6OY=";
};
cargoHash = "sha256-u42FDaSpunkj5u1zYtk27tKunW4ZzsNgYCmrSnuAe5k=";
# 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.hostPlatform.isDarwin rustPlatform.bindgenHook;
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://rbspy.github.io/";
description = "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;
};
}
|