nixpkgs/pkgs/applications/networking/netperf/default.nix
2021-01-15 14:24:03 +07:00

31 lines
898 B
Nix

{ libsmbios, lib, stdenv, autoreconfHook, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "netperf";
version = "20180613";
src = fetchFromGitHub {
owner = "HewlettPackard";
repo = "netperf";
rev = "bcb868bde7f0203bbab69609f65d4088ba7398db";
sha256 = "1wbbgdvhadd3qs3afv6i777argdpcyxkwz4yv6aqp223n8ki6dm8";
};
buildInputs = lib.optional (with stdenv.hostPlatform; isx86 && isLinux) libsmbios;
nativeBuildInputs = [ autoreconfHook ];
autoreconfPhase = ''
autoreconf -i -I src/missing/m4
'';
configureFlags = [ "--enable-demo" ];
enableParallelBuilding = true;
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 = lib.platforms.unix;
maintainers = [ lib.maintainers.mmlb ];
};
}