fbpanel: correctly apply -Wno-error

+3 -1
+3 -1
pkgs/by-name/fb/fbpanel/package.nix
··· 49 ''; 50 51 makeFlags = [ "V=1" ]; 52 - NIX_CFLAGS_COMPILE = [ 53 "-Wno-error" 54 "-I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0" 55 ]; 56
··· 49 ''; 50 51 makeFlags = [ "V=1" ]; 52 + 53 + env.NIX_CFLAGS_COMPILE = toString [ 54 "-Wno-error" 55 + "-Wno-error=incompatible-pointer-types" # not implied by -Wno-error 56 "-I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0" 57 ]; 58