nixpkgs/pkgs/applications/networking/netperf/default.nix

20 lines
520 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2012-08-10 09:56:22 +00:00
name = "netperf-2.6.0";
src = fetchurl {
url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2";
2012-08-10 09:56:22 +00:00
sha256 = "cd8dac710d4273d29f70e8dbd09353a6362ac58a11926e0822233c0cb230323a";
};
2012-08-10 09:56:22 +00:00
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 = [];
};
}