aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/netperf
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-08-10 11:56:22 +0200
committerPeter Simons <simons@cryp.to>2012-08-10 11:56:22 +0200
commitf77a3a15ee4c319a7db662888e41dbde1d7a1a5d (patch)
tree1e36701adf2b70510d532317b52a47939ca26465 /pkgs/applications/networking/netperf
parent94598606789cf1384e557f561a80a4eea6b94f12 (diff)
netperf: update to version 2.6.0
Diffstat (limited to 'pkgs/applications/networking/netperf')
-rw-r--r--pkgs/applications/networking/netperf/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/applications/networking/netperf/default.nix b/pkgs/applications/networking/netperf/default.nix
index 7ef6a86c5eb7..705f1455c458 100644
--- a/pkgs/applications/networking/netperf/default.nix
+++ b/pkgs/applications/networking/netperf/default.nix
@@ -1,11 +1,19 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
- name = "netperf-2.5.0";
+ name = "netperf-2.6.0";
src = fetchurl {
url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2";
- sha256 = "1l06bb99b4wfnmq247b8rvp4kn3w6bh1m46ri4d74z22li7br545";
+ sha256 = "cd8dac710d4273d29f70e8dbd09353a6362ac58a11926e0822233c0cb230323a";
};
-}
+ 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 = [];
+ };
+}