retronix/pkgs/roms/default.nix

13 lines
279 B
Nix
Raw Normal View History

2024-01-06 22:42:36 +01:00
{ lib, newScope }:
let
romsFun = self: let
inherit (self) callPackage;
in {
atetris = callPackage ./atetris.nix {};
mkRom = callPackage ./build/mkRom.nix {};
mkRetroarchRom = callPackage ./build/mkRetroarchRom.nix {};
};
in lib.makeScope newScope romsFun