ioping: 0.9 -> 1.0
This commit is contained in:
parent
61785c5531
commit
f5c98a8a72
@ -1,18 +1,21 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ioping-${version}";
|
name = "ioping-${version}";
|
||||||
version = "0.9";
|
version = "1.0";
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/koct9i/ioping/releases/download/v${version}/${name}.tar.gz";
|
src = fetchFromGitHub {
|
||||||
sha256 = "0pbp7b3304y9yyv2w41l3898h5q8w77hnnnq1vz8qz4qfl4467lm";
|
owner = "koct9i";
|
||||||
|
repo = "ioping";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0yn7wgd6sd39zmr5l97zd6sq1ah7l49k1h7dhgx0nv96fa4r2y9h";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = "PREFIX=$(out)";
|
makeFlags = "PREFIX=$(out)";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Disk I/O latency measuring tool";
|
description = "Disk I/O latency measuring tool";
|
||||||
maintainers = with maintainers; [ raskin ];
|
maintainers = with maintainers; [ raskin ndowens ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
homepage = https://github.com/koct9i/ioping;
|
homepage = https://github.com/koct9i/ioping;
|
||||||
|
Loading…
Reference in New Issue
Block a user