oneko: fix build by disabling some compiler warnings

This is old code, that will not change any time soon.

+7
+7
pkgs/by-name/on/oneko/package.nix
··· 31 31 "BINDIR=$(out)/bin" 32 32 "MANPATH=$(out)/share/man" 33 33 ]; 34 + 35 + env.NIX_CFLAGS_COMPILE = toString [ 36 + "-Wno-implicit-function-declaration" 37 + "-Wno-endif-labels" 38 + "-Wno-implicit-int" 39 + ]; 40 + 34 41 installTargets = [ 35 42 "install" 36 43 "install.man"