pub-solar-os/overlays/retroarch.nix

13 lines
295 B
Nix
Raw Normal View History

final: prev: {
retroarchBare = prev.retroarchBare.overrideAttrs (o: rec {
2020-06-26 03:52:40 +00:00
version = "1.8.9";
src = prev.fetchFromGitHub {
owner = "libretro";
repo = "RetroArch";
2020-06-26 03:52:40 +00:00
hash = "sha256-1kiq2ZobaPIhsWviOPCmDM3oJ0wJLmvYZ9PaqywF8I0=";
rev = "v${version}";
};
});
}