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