strace-analyzer: init at 0.5.1
This commit is contained in:
parent
45b5466818
commit
0c5416604e
2 changed files with 30 additions and 0 deletions
28
pkgs/development/tools/misc/strace-analyzer/default.nix
Normal file
28
pkgs/development/tools/misc/strace-analyzer/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, strace
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "strace-analyzer";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wookietreiber";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ICUXedWg7ZT2Uzk7ZLpFqoEXiG4AzvkwCndR2aHKjVI=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-p/HYG/KaHtvgvAd+eg1fKmDnLoWCL+XiT66jRBU2xRE=";
|
||||
|
||||
checkInputs = [ strace ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Analyzes strace output";
|
||||
homepage = "https://github.com/wookietreiber/strace-analyzer";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
|
@ -17719,6 +17719,8 @@ with pkgs;
|
|||
|
||||
strace = callPackage ../development/tools/misc/strace { };
|
||||
|
||||
strace-analyzer = callPackage ../development/tools/misc/strace-analyzer { };
|
||||
|
||||
stylua = callPackage ../development/tools/stylua { };
|
||||
|
||||
summon = callPackage ../development/tools/summon { };
|
||||
|
|
Loading…
Reference in a new issue