Skip to content

Commit 3d61666

Browse files
committed
retroarch-{bare,free}: use lib instead of builtins
1 parent 60d1565 commit 3d61666

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkgs/top-level/all-packages.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)