Merge pull request #15235 from lseppala/fix/hitimes

chefdk: fix build of hitimes on OS X
This commit is contained in:
Joachim Fasting 2016-05-05 18:10:56 +02:00
commit 133e9317ea

View file

@ -57,6 +57,12 @@ in
buildInputs = [ gpgme ];
};
hitimes = attrs: {
buildInputs =
stdenv.lib.optionals stdenv.isDarwin
[ darwin.apple_sdk.frameworks.CoreServices ];
};
# note that you need version >= v3.16.14.8,
# otherwise the gem will fail to link to the libv8 binary.
# see: https://github.com/cowboyd/libv8/pull/161