Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

netperf: remove libsmbios on non-x86

This fixes building on ARM systems.

(cherry picked from commit a94c9ad2de2037ba5565aac6cdccb2cd6a7dc27f)

+1 -1
+1 -1
pkgs/applications/networking/netperf/default.nix
··· 10 sha256 = "0wfj9kkhar6jb5639f5wxpwsraxw4v9yzg71rsdidvj5fyncjjq2"; 11 }; 12 13 - buildInputs = [ libsmbios ]; 14 nativeBuildInputs = [ autoreconfHook ]; 15 autoreconfPhase = '' 16 autoreconf -i -I src/missing/m4
··· 10 sha256 = "0wfj9kkhar6jb5639f5wxpwsraxw4v9yzg71rsdidvj5fyncjjq2"; 11 }; 12 13 + buildInputs = stdenv.lib.optional (stdenv.hostPlatform.isx86) libsmbios; 14 nativeBuildInputs = [ autoreconfHook ]; 15 autoreconfPhase = '' 16 autoreconf -i -I src/missing/m4