haskellPackages.c2hs: Disable tests on Darwin

The tests require gcc, but gcc is no longer available on Darwin systems.
This commit is contained in:
John Wiegley 2015-10-31 09:34:26 -07:00
parent 8f97ad7b3c
commit cdfb08b9c6

View File

@ -48,6 +48,7 @@ self: super: {
text_1_2_0_4 = dontCheck super.text_1_2_0_4;
text_1_2_0_6 = dontCheck super.text_1_2_0_6;
text = dontCheck super.text;
c2hs = if pkgs.stdenv.isDarwin then dontCheck super.c2hs else super.c2hs;
# The package doesn't compile with ruby 1.9, which is our default at the moment.
hruby = super.hruby.override { ruby = pkgs.ruby_2_1; };