1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00

Merge master into staging-next

This commit is contained in:
nixpkgs-ci[bot] 2025-05-02 18:05:12 +00:00 committed by GitHub
commit 7be7cc17c3
Signed by: github
GPG key ID: B5690EEEBB952194
53 changed files with 1137 additions and 630 deletions

View file

@ -289,7 +289,8 @@ rec {
*/
availableOn =
platform: pkg:
((!pkg ? meta.platforms) || any (platformMatch platform) pkg.meta.platforms)
pkg != null
&& ((!pkg ? meta.platforms) || any (platformMatch platform) pkg.meta.platforms)
&& all (elem: !platformMatch platform elem) (pkg.meta.badPlatforms or [ ]);
/**