forked from mirrors/nixpkgs
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:
parent
621e87f821
commit
892889cf35
11
pkgs/applications/networking/netperf/default.nix
Normal file
11
pkgs/applications/networking/netperf/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue