nixpkgs/pkgs/tools/networking/iperf/2.nix
R. RyanTM 98463f7a6c iperf2: 2.0.10 -> 2.0.11
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/iperf/versions.

These checks were done:

- built on NixOS
- /nix/store/96cfq6l9jpw5jb2xfmyqsqvpx9khvaff-iperf-2.0.11/bin/iperf passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 2.0.11 with grep in /nix/store/96cfq6l9jpw5jb2xfmyqsqvpx9khvaff-iperf-2.0.11
- directory tree listing: https://gist.github.com/9e979b025f65af2cc7e8ffe313002b2f
- du listing: https://gist.github.com/68cf597a93df8e798cb97551f8303fa4
2018-05-30 17:50:58 -07:00

20 lines
485 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "iperf-2.0.11";
src = fetchurl {
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
sha256 = "1lm5inayc8fkqncj55fvzl9611rkmkj212lknmby7c3bgk851mmp";
};
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/iperf/;
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
license = licenses.mit;
};
}