mirror of
https://codeberg.org/icewind/mill-scale.git
synced 2026-08-02 12:14:54 +02:00
add gungraun tooling
This commit is contained in:
parent
f5cbda29b9
commit
e6d7778ce2
5 changed files with 33 additions and 0 deletions
29
pkgs/gungraun-runner/default.nix
Normal file
29
pkgs/gungraun-runner/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "gungraun-runner";
|
||||
version = "0.19.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gungraun";
|
||||
repo = "gungraun";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-KWQ4wMNIdKY9FTmPd9ZdlSuCpQQBFhIKD2Ereo3JQaI=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-+3toaUDLCmExC3EvNv1GEdUbHSBeShurp2Y+zvE/t0k=";
|
||||
|
||||
buildAndTestSubdir = "gungraun-runner";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "High-precision and consistent benchmarking framework/harness for Rust";
|
||||
homepage = "https://github.com/gungraun/gungraun";
|
||||
license = licenses.mit;
|
||||
mainProgram = "gungraun-runner";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue