iperf: 2.0.4 -> 2.0.5
This commit is contained in:
parent
52ad0eaca5
commit
9b35dac0c0
1 changed files with 8 additions and 7 deletions
|
@ -1,16 +1,17 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "iperf-2.0.4";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "iperf-2.0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/iperf/iperf-2.0.4.tar.gz;
|
||||
sha256 = "0i3r75prbyxs56rngjbrag8rg480ki3daaa924krrafng30z2liv";
|
||||
url = "mirror://sourceforge/iperf/${name}.tar.gz";
|
||||
sha256 = "0nr6c81x55ihs7ly2dwq19v9i1n6wiyad1gacw3aikii0kzlwsv3";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "";
|
||||
description = "tool to measure IP bandwidth using UDP or TCP";
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://sourceforge.net/projects/iperf/";
|
||||
description = "Tool to measure IP bandwidth using UDP or TCP";
|
||||
platforms = platforms.linux;
|
||||
license = "as-is";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue