summary refs log tree commit diff
path: root/pkgs/applications/networking/netperf/default.nix
blob: 40aa326362972fce34ad411dbc9d4c8ba721b3b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "netperf-2.7.0";

  src = fetchurl {
    url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2";
    sha256 = "0nip8178pdry0pqx2gkz0sl2gcvc7qww621q43kqnp43amvg2al4";
  };

  meta = {
    description = "benchmark to measure the performance of many different types of networking";
    homepage = "http://www.netperf.org/netperf/";
    license = "Hewlett-Packard BSD-like license";

    platforms = stdenv.lib.platforms.linux;
    maintainers = [];
  };
}