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

wine: disable bindnow hardening

(cherry picked from commit ba960ac38370aab6297a5a07ba3784f7311db7dc)

authored by Albert Safin and committed by Tuomas Tynkkynen cdb97353 9e804ba5

+4
+4
pkgs/misc/emulators/wine/base.nix
··· 103 103 104 104 enableParallelBuilding = true; 105 105 106 + # https://bugs.winehq.org/show_bug.cgi?id=43530 107 + # https://github.com/NixOS/nixpkgs/issues/31989 108 + hardeningDisable = [ "bindnow" ]; 109 + 106 110 passthru = { inherit pkgArches; }; 107 111 meta = { 108 112 inherit version platforms;