mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
parent
a88cc24d9d
commit
9365e41dd2
1 changed files with 9 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
pkgsCross,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
|
|
@ -15,13 +16,20 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
hash = "sha256-9lJEjns8ttjgI52ZXeWgL77GMd7o7IvefBJ5UH9y9ks=";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"CC:=$(CC)"
|
||||
];
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"man"
|
||||
];
|
||||
|
||||
passthru.tests = {
|
||||
aarch64-cross = pkgsCross.aarch64-multiplatform.ioping;
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Disk I/O latency measuring tool";
|
||||
maintainers = with lib.maintainers; [ raskin ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue