Merge pull request #23318 from ndowens/ioping

ioping: 0.9 -> 1.0

authored by

Michael Raskin and committed by
GitHub
cd912b1e 366b227a

+9 -6
+9 -6
pkgs/tools/system/ioping/default.nix
··· 1 - { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 name = "ioping-${version}"; 5 - version = "0.9"; 6 - src = fetchurl { 7 - url = "https://github.com/koct9i/ioping/releases/download/v${version}/${name}.tar.gz"; 8 - sha256 = "0pbp7b3304y9yyv2w41l3898h5q8w77hnnnq1vz8qz4qfl4467lm"; 9 }; 10 11 makeFlags = "PREFIX=$(out)"; 12 13 meta = with stdenv.lib; { 14 description = "Disk I/O latency measuring tool"; 15 - maintainers = with maintainers; [ raskin ]; 16 platforms = platforms.unix; 17 license = licenses.gpl3Plus; 18 homepage = https://github.com/koct9i/ioping;
··· 1 + { stdenv, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 name = "ioping-${version}"; 5 + version = "1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "koct9i"; 9 + repo = "ioping"; 10 + rev = "v${version}"; 11 + sha256 = "0yn7wgd6sd39zmr5l97zd6sq1ah7l49k1h7dhgx0nv96fa4r2y9h"; 12 }; 13 14 makeFlags = "PREFIX=$(out)"; 15 16 meta = with stdenv.lib; { 17 description = "Disk I/O latency measuring tool"; 18 + maintainers = with maintainers; [ raskin ndowens ]; 19 platforms = platforms.unix; 20 license = licenses.gpl3Plus; 21 homepage = https://github.com/koct9i/ioping;