mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #15363 from vrthra/milu
milu: Fix hydra failure on darwin
This commit is contained in:
commit
95c7dd7af9
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user