about summary refs log tree commit diff
path: root/pkgs/applications/emulators/retroarch/cores.nix
diff options
context:
space:
mode:
authorJoel Holdsworth <joel@airwebreathe.org.uk>2024-02-03 22:25:18 +0000
committerJoel Holdsworth <joel@airwebreathe.org.uk>2024-02-04 12:46:06 +0000
commit83c79b604dcbece221e79d18ef96ff00cfecfd2e (patch)
tree16851cb9d43b6c9b7316eb2c45af9a5c9aa939ff /pkgs/applications/emulators/retroarch/cores.nix
parentd8e153fd75c522a7e1daa13b53afe09c108bf14d (diff)
libretro: Added Mr.Boom libretro core
Diffstat (limited to 'pkgs/applications/emulators/retroarch/cores.nix')
-rw-r--r--pkgs/applications/emulators/retroarch/cores.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/retroarch/cores.nix b/pkgs/applications/emulators/retroarch/cores.nix
index c9f97b61e6803..d011961da4fe9 100644
--- a/pkgs/applications/emulators/retroarch/cores.nix
+++ b/pkgs/applications/emulators/retroarch/cores.nix
@@ -641,6 +641,15 @@ in
     };
   };
 
+  mrboom = mkLibretroCore {
+    core = "mrboom";
+    makefile = "Makefile";
+    meta = {
+      description = "Port of Mr.Boom to libretro";
+      license = lib.licenses.mit;
+    };
+  };
+
   mupen64plus = mkLibretroCore {
     core = "mupen64plus-next";
     src = getCoreSrc "mupen64plus";