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

16 lines
284 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:09:55 +02:00
2021-08-07 11:14:46 +02:00
gold = prev.callPackage ./pokegold { };
2021-08-07 11:09:55 +02:00
all = prev.callPackage ./pokeall { };
2021-08-07 11:01:17 +02:00
};
}