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
No known key found for this signature in database
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 [ ]);
/**