mysql57: Add developer_cmds as build input on darwin

This commit is contained in:
Johannes Bornhold 2017-02-26 17:24:52 +01:00
parent 4b6f021251
commit 3a4c851b89
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl
, boost, cctools, CoreServices }:
, boost, cctools, CoreServices, developer_cmds }:
# Note: zlib is not required; MySQL can use an internal zlib.
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
'';
buildInputs = [ cmake bison ncurses openssl readline zlib boost ]
++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices ];
++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices developer_cmds ];
enableParallelBuilding = true;

View File

@ -10620,7 +10620,7 @@ with pkgs;
};
mysql57 = callPackage ../servers/sql/mysql/5.7.x.nix {
inherit (darwin) cctools;
inherit (darwin) cctools developer_cmds;
inherit (darwin.apple_sdk.frameworks) CoreServices;
boost = boost159;
};