Add netperf

I will add meta later, I promise, I just need to use this now

svn path=/nixpkgs/trunk/; revision=30026
This commit is contained in:
Shea Levy 2011-10-25 20:49:22 +00:00
parent 621e87f821
commit 892889cf35
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "netperf-2.5.0";
src = fetchurl {
url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2";
sha256 = "1l06bb99b4wfnmq247b8rvp4kn3w6bh1m46ri4d74z22li7br545";
};
}

View File

@ -899,6 +899,8 @@ let
most = callPackage ../tools/misc/most { };
netperf = callPackage ../applications/networking/netperf { };
ninka = callPackage ../development/tools/misc/ninka { };
nodejs = callPackage ../development/web/nodejs {};