Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{
|
|
libsmbios,
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "netperf";
|
|
version = "20210121";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "HewlettPackard";
|
|
repo = "netperf";
|
|
rev = "3bc455b23f901dae377ca0a558e1e32aa56b31c4";
|
|
sha256 = "s4G1ZN+6LERdEMDkc+12ZQgTi6K+ppUYUCGn4faCS9c=";
|
|
};
|
|
|
|
patches = [
|
|
# Pul fix pending upstream inclusion for -fno-common toolchains:
|
|
# https://github.com/HewlettPackard/netperf/pull/46
|
|
(fetchpatch {
|
|
name = "fno-common.patch";
|
|
url = "https://github.com/HewlettPackard/netperf/commit/c6a2e17fe35f0e68823451fedfdf5b1dbecddbe3.patch";
|
|
sha256 = "P/lRa6EakSalKWDTgZ7bWeGleaTLLa5UhzulxKd1xE4=";
|
|
})
|
|
];
|
|
|
|
buildInputs = lib.optional (with stdenv.hostPlatform; isx86 && isLinux) libsmbios;
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
autoreconfPhase = ''
|
|
autoreconf -i -I src/missing/m4
|
|
'';
|
|
configureFlags = [
|
|
"--enable-demo"
|
|
"CFLAGS=-D_GNU_SOURCE"
|
|
];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Benchmark to measure the performance of many different types of networking";
|
|
homepage = "https://github.com/HewlettPackard/netperf/";
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.mmlb ];
|
|
};
|
|
}
|