games: update retroarch to latest version

This commit is contained in:
Timothy DeHerrera 2020-06-14 13:48:08 -06:00
parent dc230fa066
commit adce24be8b
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

12
overlays/retroarch.nix Normal file
View file

@ -0,0 +1,12 @@
final: prev: {
retroarchBare = prev.retroarchBare.overrideAttrs (o: rec {
version = "1.8.8";
src = prev.fetchFromGitHub {
owner = "libretro";
repo = "RetroArch";
hash = "sha256-rPMaTs98dmP0nkuHJRt5DmCgzk9imfJ+rgW9zfEqUFA=";
rev = "v${version}";
};
});
}