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

hardinfo: fix build with new libsoup

authored by

Tor Hedin Brønner and committed by
Jan Tojnar
3fdfde44 fcf06698

+3
+3
pkgs/tools/system/hardinfo/default.nix
··· 19 # Fixes '#error You must compile this program without "-O"' 20 hardeningDisable = [ "all" ]; 21 22 preConfigure = '' 23 patchShebangs configure 24
··· 19 # Fixes '#error You must compile this program without "-O"' 20 hardeningDisable = [ "all" ]; 21 22 + # Ignore undefined references to a bunch of libsoup symbols 23 + NIX_LDFLAGS = "--unresolved-symbol=ignore-all"; 24 + 25 preConfigure = '' 26 patchShebangs configure 27