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/default.nix

12 lines
196 B
Nix
Raw Normal View History

2021-08-07 11:01:17 +02:00
final: prev: {
# roms
pokegb = prev.recurseIntoAttrs {
# official (chronological order)
red = prev.callPackage ./pokered { };
yellow = prev.callPackage ./pokeyellow { };
2021-08-07 11:01:17 +02:00
};
}