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>2022-01-21 18:40:38 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2022-01-21 22:24:24 -0300
commit2ac298e45b25cb3e3c34f221a280be2bfd03635b (patch)
tree31ce5bdba57b3b58cad0b5b9565fa1503e47e51a /pkgs/misc/emulators/retroarch/cores.nix
parentb7a617754c18472a01e69d4eb24487b8bd9229c7 (diff)
downloadnixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.tar
nixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.tar.gz
nixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.tar.bz2
nixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.tar.lz
nixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.tar.xz
nixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.tar.zst
nixpkgs-2ac298e45b25cb3e3c34f221a280be2bfd03635b.zip
libretro: unstable-2021-12-06 -> unstable-2022-01-21
Diffstat (limited to 'pkgs/misc/emulators/retroarch/cores.nix')
-rw-r--r--pkgs/misc/emulators/retroarch/cores.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix
index 4bbe12cbd29..3c987b67971 100644
--- a/pkgs/misc/emulators/retroarch/cores.nix
+++ b/pkgs/misc/emulators/retroarch/cores.nix
@@ -8,7 +8,6 @@
 , cmake
 , curl
 , fetchFromGitHub
-, fetchpatch
 , ffmpeg
 , fluidsynth
 , gettext
@@ -56,7 +55,7 @@ let
     , license
     , src ? (getCoreSrc core)
     , broken ? false
-    , version ? "unstable-2021-12-06"
+    , version ? "unstable-2022-01-21"
     , platforms ? retroarch.meta.platforms
       # The resulting core file is based on core name
       # Setting `normalizeCore` to `true` will convert `-` to `_` on the core filename
@@ -245,14 +244,6 @@ in
     description = "Port of bsnes to libretro";
     license = lib.licenses.gpl3Only;
     makefile = "Makefile";
-    # https://github.com/libretro/bsnes-libretro/issues/10
-    patches = [
-      (fetchpatch {
-        name = "added-missing-GB_VERSION-define.patch";
-        url = "https://github.com/nE0sIghT/bsnes-libretro/commit/97fd8b486f9a9046277a580b238b6673a98f7f72.patch";
-        sha256 = "sha256-gCiy6sqc9sixT6Appr5ZCfHyBE2jYhPb0KvI63nfmEc=";
-      })
-    ];
   };
 
   bsnes-hd =
@@ -865,6 +856,7 @@ in
       "-DBUILD_SDL=OFF"
       "-DBUILD_SOKOL=OFF"
     ];
+    preConfigure = "cd core";
     postBuild = "cd lib";
   };