psensor: add -Wno-error due to increasing compiler strictness

This Hydra failure:

https://hydra.nixos.org/log/iq8zqmw7yclgwpvr8i8clwf2sh67jb0i-psensor-1.2.1.drv

...appears to be the result of the package shipping with -Werror and
gcc accreting ever-increasing quantities of warnings as time
progresses. Let's not treat the compiler warnings as errors.

+1 -1
+1 -1
pkgs/tools/system/psensor/default.nix
··· 19 19 ]; 20 20 21 21 preConfigure = '' 22 - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libXNVCtrl}/include" 22 + NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libXNVCtrl}/include -Wno-error" 23 23 NIX_LDFLAGS="$NIX_LDFLAGS -L${libXNVCtrl}/lib" 24 24 ''; 25 25