netperf: fix Darwin build
This fixes the following build error on Darwin: ``` In file included from ./src/libsmbios_c/common/libsmbios_c_source.h:37: ./src/libsmbios_c/common/select_platform_config.h:16:7: error: "Unknown platform - please report to libsmbios maintainer." # error "Unknown platform - please report to libsmbios maintainer." ^ 1 error generated. make[1]: *** [Makefile:1728: src/libsmbios_c/common/out_libsmbios_c_la-common.lo] Error 1 ``` Per the netperf doc, `libsmbios` is only used on Linux.
This commit is contained in:
parent
9206c0d115
commit
91d52e62d5
@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
||||
sha256 = "1wbbgdvhadd3qs3afv6i777argdpcyxkwz4yv6aqp223n8ki6dm8";
|
||||
};
|
||||
|
||||
buildInputs = stdenv.lib.optional (stdenv.hostPlatform.isx86) libsmbios;
|
||||
buildInputs = stdenv.lib.optional (with stdenv.hostPlatform; isx86 && isLinux) libsmbios;
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
autoreconfPhase = ''
|
||||
autoreconf -i -I src/missing/m4
|
||||
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
homepage = "http://www.netperf.org/netperf/";
|
||||
license = "Hewlett-Packard BSD-like license";
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.mmlb ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user