Merge pull request #308873 from TomaSajt/openmx

rPackages.OpenMx: ignore warnings causing Hydra log limit to be reached
This commit is contained in:
Justin Bedő
2024-05-04 22:34:17 +10:00
committed by GitHub
+4
View File
@@ -1440,6 +1440,10 @@ let
});
OpenMx = old.OpenMx.overrideAttrs (attrs: {
env = (attrs.env or { }) // {
# needed to avoid "log limit exceeded" on Hydra
NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -Wno-ignored-attributes";
};
preConfigure = ''
patchShebangs configure
'';