rcs: Fix build on gcc 5

http://hydra.nixos.org/build/32624218
This commit is contained in:
Eelco Dolstra 2016-03-03 13:10:22 +01:00
parent 47a04ac52c
commit 1c74a16e10

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
doCheck = true;
NIX_CFLAGS_COMPILE = if stdenv.isDarwin then "-std=gnu99" else null;
NIX_CFLAGS_COMPILE = [ "-std=c99" ];
meta = {
homepage = http://www.gnu.org/software/rcs/;