rbspy: init at 0.10.0

Add rbspy package. Tests are disabled because they try to write to $HOME.
This commit is contained in:
Stanisław Pitucha 2022-02-21 20:56:18 +11:00
parent ba8ec9d6d2
commit d2ae11afb7
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{rustPlatform, fetchFromGitHub, lib}:
rustPlatform.buildRustPackage rec {
pname = "rbspy";
version = "0.10.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v0.10.0";
sha256 = "sha256-zvH2oPm2tOdk4C5EDNhNgO9nt4usnuBTp+fh6xfwraQ=";
};
cargoSha256 = "sha256-Es4COQiNZmbGdWeSyOvx4tiV1ygic3VPQLTiispVWpM=";
doCheck = false;
meta = with lib; {
homepage = "https://rbspy.github.io/";
description = ''
A Sampling CPU Profiler for Ruby.
'';
license = licenses.mit;
maintainers = with maintainers; [ viraptor ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View file

@ -33729,6 +33729,8 @@ with pkgs;
rauc = callPackage ../tools/misc/rauc { };
rbspy = callPackage ../development/tools/rbspy { };
redprl = callPackage ../applications/science/logic/redprl { };
renderizer = callPackage ../development/tools/renderizer {};