release.nix: disable private apple sdks in release

we shouldn’t let it get into the release. This includes:

- darwin.cf-private
- darwin.osx_private_sdk
- xcode
This commit is contained in:
Matthew Bauer 2017-08-17 14:12:51 -07:00
parent 0065365bdf
commit 10241b3c59

View file

@ -126,6 +126,12 @@ let
pandas = unix;
scikitlearn = unix;
};
darwin = packagePlatforms pkgs.darwin // {
cf-private = {};
osx_private_sdk = {};
xcode = {};
};
} ));
in jobs