15 lines
270 B
Nix
15 lines
270 B
Nix
|
{ lib, symlinkJoin, pokegb }:
|
||
|
|
||
|
symlinkJoin {
|
||
|
name = "pokeall";
|
||
|
|
||
|
paths = lib.attrValues
|
||
|
(lib.filterAttrs
|
||
|
(n: v: lib.isDerivation v && n != "all")
|
||
|
pokegb);
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "All ROMs from the pokegb-nix overlay combined";
|
||
|
};
|
||
|
}
|