3
0
Fork 0
forked from mirrors/nixpkgs

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";

View file

@ -6049,7 +6049,9 @@ let
cgui = callPackage ../development/libraries/cgui {};
check = callPackage ../development/libraries/check { };
check = callPackage ../development/libraries/check {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
chipmunk = callPackage ../development/libraries/chipmunk {};