darwin: check: add missing CoreServices dep

This commit is contained in:
Stéphane Jourdois
2015-11-10 21:44:46 +01:00
parent d8c5f4dd56
commit ea5a227993
2 changed files with 8 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
{ fetchurl, stdenv }:
{ fetchurl, stdenv
, CoreServices
}:
stdenv.mkDerivation rec {
name = "check-${version}";
@@ -12,6 +14,8 @@ stdenv.mkDerivation rec {
# Test can randomly fail: http://hydra.nixos.org/build/7243912
doCheck = false;
buildInputs = stdenv.lib.optional stdenv.isDarwin CoreServices;
meta = with stdenv.lib; {
description = "Unit testing framework for C";