We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8226b30 + 472eb19 commit f57f415Copy full SHA for f57f415
pkgs/os-specific/linux/firmware/ath9k/default.nix
@@ -47,7 +47,12 @@ stdenv.mkDerivation (finalAttrs: {
47
perl
48
];
49
50
- env.NIX_CFLAGS_COMPILE = "-w"; # old libiberty emits fatal warnings
+ env.NIX_CFLAGS_COMPILE =
51
+ # old libiberty emits fatal warnings
52
+ "-w"
53
+ # old gmp fails to compile with newer gcc
54
+ # FIXME remove when the normal version has moved on
55
+ + lib.optionalString (!enableUnstable) " -fpermissive";
56
57
dontUseCmakeConfigure = true;
58
enableParallelBuilding = true;
0 commit comments