summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix2
-rw-r--r--pkgs/retroarch.nix12
2 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 80804bf..9b8c990 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -15,4 +15,6 @@ rec {
   ghidra = unstablePkgs.callPackage ./ghidra {};
   
   ngfx = pkgs.callPackage ./ngfx.nix {};
+  
+  retroarch = pkgs.callPackage ./retroarch.nix {};
 }
diff --git a/pkgs/retroarch.nix b/pkgs/retroarch.nix
new file mode 100644
index 0000000..0177967
--- /dev/null
+++ b/pkgs/retroarch.nix
@@ -0,0 +1,12 @@
+{ retroarch, libretro }:
+
+retroarch.override {
+  cores = with libretro; [
+    dolphin
+    pcsx2
+    mupen64plus
+    citra 
+    beetle-gba
+    beetle-psx-hw
+  ];
+}