2015-04-18 18:45:01 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2011-06-07 16:56:50 +01:00
|
|
|
|
2015-04-18 18:45:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ioping-${version}";
|
|
|
|
version = "0.9";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/koct9i/ioping/releases/download/v${version}/${name}.tar.gz";
|
2014-11-03 21:01:28 +00:00
|
|
|
sha256 = "0pbp7b3304y9yyv2w41l3898h5q8w77hnnnq1vz8qz4qfl4467lm";
|
2011-06-07 16:56:50 +01:00
|
|
|
};
|
|
|
|
|
2015-04-18 18:45:01 +01:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2011-06-07 16:56:50 +01:00
|
|
|
|
2015-04-18 18:45:01 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Disk I/O latency measuring tool";
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.unix;
|
2015-04-18 18:45:01 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
homepage = https://github.com/koct9i/ioping;
|
2011-06-07 16:56:50 +01:00
|
|
|
};
|
2015-04-18 18:45:01 +01:00
|
|
|
}
|