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 "BINDIR=$(out)/bin" 32 "MANPATH=$(out)/share/man" 33 ]; 34 installTargets = [ 35 "install" 36 "install.man"
··· 31 "BINDIR=$(out)/bin" 32 "MANPATH=$(out)/share/man" 33 ]; 34 + 35 + env.NIX_CFLAGS_COMPILE = toString [ 36 + "-Wno-implicit-function-declaration" 37 + "-Wno-endif-labels" 38 + "-Wno-implicit-int" 39 + ]; 40 + 41 installTargets = [ 42 "install" 43 "install.man"