nixpkgs/pkgs/tools/system/ioping/default.nix

24 lines
565 B
Nix
Raw Normal View History

2017-03-01 02:18:28 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "ioping-${version}";
2017-03-01 02:18:28 +00:00
version = "1.0";
src = fetchFromGitHub {
owner = "koct9i";
repo = "ioping";
rev = "v${version}";
sha256 = "0yn7wgd6sd39zmr5l97zd6sq1ah7l49k1h7dhgx0nv96fa4r2y9h";
};
makeFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
description = "Disk I/O latency measuring tool";
2017-03-01 02:18:28 +00:00
maintainers = with maintainers; [ raskin ndowens ];
platforms = platforms.unix;
license = licenses.gpl3Plus;
homepage = https://github.com/koct9i/ioping;
};
}