Merge pull request #308873 from TomaSajt/openmx

rPackages.OpenMx: ignore warnings causing Hydra log limit to be reached

authored by Justin Bedő and committed by GitHub 75e2cb4d 26951f57

+4
+4
pkgs/development/r-modules/default.nix
··· 1440 1440 }); 1441 1441 1442 1442 OpenMx = old.OpenMx.overrideAttrs (attrs: { 1443 + env = (attrs.env or { }) // { 1444 + # needed to avoid "log limit exceeded" on Hydra 1445 + NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -Wno-ignored-attributes"; 1446 + }; 1443 1447 preConfigure = '' 1444 1448 patchShebangs configure 1445 1449 '';