summary refs log tree commit diff
path: root/pkgs/misc/emulators/retroarch/cores.nix
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2021-12-06 17:34:36 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2021-12-06 19:21:20 -0300
commit0201901829ce03b3caf4b77842d5d6ae3932cef6 (patch)
tree43f1ebef803f3dd3c8c4cd2540b7acdd5b8f4357 /pkgs/misc/emulators/retroarch/cores.nix
parentb404c39faa327a872b91be75897461f594d1ab70 (diff)
downloadnixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.tar
nixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.tar.gz
nixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.tar.bz2
nixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.tar.lz
nixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.tar.xz
nixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.tar.zst
nixpkgs-0201901829ce03b3caf4b77842d5d6ae3932cef6.zip
libretro.snes9x2005-plus: init at unstable-2021-12-06
This is actually the old `libretro.snes9x2005` renamed with the proper
core name, and the `libretro.snes9x2005` now is build without the
Blaarg's APU (same as upstream).
Diffstat (limited to 'pkgs/misc/emulators/retroarch/cores.nix')
-rw-r--r--pkgs/misc/emulators/retroarch/cores.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix
index 63a552ff23b..703248ad3f1 100644
--- a/pkgs/misc/emulators/retroarch/cores.nix
+++ b/pkgs/misc/emulators/retroarch/cores.nix
@@ -804,8 +804,15 @@ in
     description = "Optimized port/rewrite of SNES9x 1.43 to Libretro";
     license = "Non-commercial";
     makefile = "Makefile";
+  };
+
+  snes9x2005-plus = mkLibRetroCore {
+    core = "snes9x2005-plus";
+    src = getCoreSrc "snes9x2005";
+    description = "Optimized port/rewrite of SNES9x 1.43 to Libretro, with Blargg's APU";
+    license = "Non-commercial";
+    makefile = "Makefile";
     makeFlags = [ "USE_BLARGG_APU=1" ];
-    postBuild = "mv snes9x2005_plus_libretro${stdenv.hostPlatform.extensions.sharedLibrary} snes9x2005_libretro${stdenv.hostPlatform.extensions.sharedLibrary}";
   };
 
   snes9x2010 = mkLibRetroCore {