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
commit 75e2cb4ded
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
'';