Merge pull request #161209 from viraptor/rbspy

rbspy: init at 0.11.1
This commit is contained in:
Mario Rodas 2022-04-14 05:09:46 -05:00 committed by GitHub
commit 6361b4941a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.11.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-9BeQHwwnirK5Wquj6Tal8yCU/NXZGaPjXZe3cy5m98s=";
};
cargoSha256 = "sha256-DHdfv6210wAkL9vXxLr76ejFWU/eV/q3lmgsYa5Rn54=";
doCheck = true;
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

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