Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
netperf: remove libsmbios on non-x86
Browse files Browse the repository at this point in the history
This fixes building on ARM systems.
  • Loading branch information
lheckemann committed Mar 25, 2019
1 parent 7c9e225 commit a94c9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/networking/netperf/default.nix
Expand Up @@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0wfj9kkhar6jb5639f5wxpwsraxw4v9yzg71rsdidvj5fyncjjq2";
};

buildInputs = [ libsmbios ];
buildInputs = stdenv.lib.optional (stdenv.hostPlatform.isx86) libsmbios;
nativeBuildInputs = [ autoreconfHook ];
autoreconfPhase = ''
autoreconf -i -I src/missing/m4
Expand Down

0 comments on commit a94c9ad

Please sign in to comment.