This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues/pull-requests.
pokegb-nix/pokeall/default.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";
};
}