milu: Fix hydra failure on darwin

The hydra build failed on darwin on compiling, complaining about gcc.
This commit disables the darwin build.
This commit is contained in:
Rahul Gopinath 2016-05-10 09:39:22 -07:00
parent 31dc954bc1
commit c99944b2bf

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, unzip, pkgconfig, glib, clang }:
{ stdenv, fetchFromGitHub, unzip, pkgconfig, glib, clang, gcc }:
stdenv.mkDerivation rec {
name = "milu-nightly-${version}";
@ -27,13 +27,14 @@ stdenv.mkDerivation rec {
glib
unzip
clang
gcc
];
meta = {
description = "Higher Order Mutation Testing Tool for C and C++ programs";
homepage = http://github.com/yuejia/Milu;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.vrthra ];
};
}