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

22 lines
531 B
Nix
Raw Normal View History

2017-11-14 01:32:17 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
2016-04-12 22:52:02 +02:00
name = "netperf-2.7.0";
2017-11-14 01:32:17 +01:00
src = fetchFromGitHub {
owner = "HewlettPackard";
repo = "netperf";
rev = name;
sha256 = "034indn3hicwbvyzgw9f32bv2i7c5iv8b4a11imyn03pw97jzh10";
};
2012-08-10 11:56:22 +02:00
meta = {
description = "Benchmark to measure the performance of many different types of networking";
homepage = http://www.netperf.org/netperf/;
2012-08-10 11:56:22 +02:00
license = "Hewlett-Packard BSD-like license";
platforms = stdenv.lib.platforms.linux;
maintainers = [];
};
}