mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
29 lines
647 B
Nix
29 lines
647 B
Nix
{ 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=";
|
|
|
|
nativeCheckInputs = [ strace ];
|
|
|
|
meta = with lib; {
|
|
description = "Analyzes strace output";
|
|
homepage = "https://github.com/wookietreiber/strace-analyzer";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|