Merge pull request #145759 from mattchrist/update-libretro.dolphin

libretro.dolphin: 2020-03-06 -> 2021-11-01

authored by tomberek and committed by GitHub 51efdeff cbb28ac9

+5 -4
+5 -4
pkgs/misc/emulators/retroarch/cores.nix
··· 8 9 d2u = lib.replaceChars ["-"] ["_"]; 10 11 - mkLibRetroCore = { core, src, description, license, broken ? false, ... }@a: 12 lib.makeOverridable stdenv.mkDerivation ((rec { 13 14 name = "libretro-${a.core}-${version}"; 15 - version = "2020-03-06"; 16 inherit (a) src; 17 18 buildInputs = [ zlib ] ++ a.extraBuildInputs or []; ··· 334 335 dolphin = mkLibRetroCore { 336 core = "dolphin"; 337 src = fetchRetro { 338 repo = "dolphin"; 339 - rev = "1fbd59911d1b718c142d6448dee3ede98152e395"; 340 - sha256 = "1rymsvs034l1hbxc3w8zi9lhmgka2qaj3jynjy152dccd480nnd4"; 341 }; 342 description = "Port of Dolphin to libretro"; 343 license = gpl2Plus;
··· 8 9 d2u = lib.replaceChars ["-"] ["_"]; 10 11 + mkLibRetroCore = { core, src, description, license, broken ? false, version ? "2020-03-06", ... }@a: 12 lib.makeOverridable stdenv.mkDerivation ((rec { 13 14 name = "libretro-${a.core}-${version}"; 15 + inherit version; 16 inherit (a) src; 17 18 buildInputs = [ zlib ] ++ a.extraBuildInputs or []; ··· 334 335 dolphin = mkLibRetroCore { 336 core = "dolphin"; 337 + version = "2021-11-01"; 338 src = fetchRetro { 339 repo = "dolphin"; 340 + rev = "3370f7693be95c23ac779e5172ff52b7eb2861a7"; 341 + sha256 = "0ylxi25kbv0h2p24aid7z4i0w6drf7h92q02hjdl3h3gni98lk9i"; 342 }; 343 description = "Port of Dolphin to libretro"; 344 license = gpl2Plus;