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:
parent
0065365bdf
commit
10241b3c59
@ -126,6 +126,12 @@ let
|
|||||||
pandas = unix;
|
pandas = unix;
|
||||||
scikitlearn = unix;
|
scikitlearn = unix;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
darwin = packagePlatforms pkgs.darwin // {
|
||||||
|
cf-private = {};
|
||||||
|
osx_private_sdk = {};
|
||||||
|
xcode = {};
|
||||||
|
};
|
||||||
} ));
|
} ));
|
||||||
|
|
||||||
in jobs
|
in jobs
|
||||||
|
Loading…
Reference in New Issue
Block a user