File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1461,22 +1461,22 @@ with pkgs;
14611461 # includes only cores for platform with free licenses
14621462 retroarch-free = retroarch.withCores (
14631463 cores:
1464- builtins .filter
1464+ lib .filter
14651465 (c:
14661466 (c ? libretroCore)
14671467 && (lib.meta.availableOn stdenv.hostPlatform c)
14681468 && (!c.meta.unfree))
1469- (builtins .attrValues cores)
1469+ (lib .attrValues cores)
14701470 );
14711471
14721472 # includes all cores for platform (including ones with non-free licenses)
14731473 retroarch-full = retroarch.withCores (
14741474 cores:
1475- builtins .filter
1475+ lib .filter
14761476 (c:
14771477 (c ? libretroCore)
14781478 && (lib.meta.availableOn stdenv.hostPlatform c))
1479- (builtins .attrValues cores)
1479+ (lib .attrValues cores)
14801480 );
14811481
14821482 wrapRetroArch = retroarch-bare.wrapper;
You can’t perform that action at this time.
0 commit comments