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 }: 1 + { stdenv, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation rec { 4 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"; 5 + version = "1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "koct9i"; 9 + repo = "ioping"; 10 + rev = "v${version}"; 11 + sha256 = "0yn7wgd6sd39zmr5l97zd6sq1ah7l49k1h7dhgx0nv96fa4r2y9h"; 9 12 }; 10 13 11 14 makeFlags = "PREFIX=$(out)"; 12 15 13 16 meta = with stdenv.lib; { 14 17 description = "Disk I/O latency measuring tool"; 15 - maintainers = with maintainers; [ raskin ]; 18 + maintainers = with maintainers; [ raskin ndowens ]; 16 19 platforms = platforms.unix; 17 20 license = licenses.gpl3Plus; 18 21 homepage = https://github.com/koct9i/ioping;