Merge pull request #10947 from sjourdois/check

darwin: check: add missing CoreServices dep
This commit is contained in:
Domen Kožar
2015-11-11 12:03:14 +01:00
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";