lol

libfaketime: Fix build on gcc 6

http://hydra.nixos.org/build/43031670

authored by

Eelco Dolstra and committed by
Robin Gloster
a2900f3f 0cb25385

+3
+3
pkgs/development/libraries/libfaketime/default.nix
··· 16 16 makeFlagsArray+=(PREFIX="$out" LIBDIRNAME=/lib) 17 17 ''; 18 18 19 + # Work around "libfaketime.c:513:7: error: nonnull argument 'buf' compared to NULL [-Werror=nonnull-compare]". 20 + NIX_CFLAGS_COMPILE = "-Wno-nonnull-compare"; 21 + 19 22 meta = with stdenv.lib; { 20 23 description = "Report faked system time to programs without having to change the system-wide time"; 21 24 homepage = http://www.code-wizards.com/projects/libfaketime/;