1
1
mirror of https://github.com/divnix/digga.git synced 2024-11-24 05:05:26 +03:00
digga/overlays/retroarch.nix

14 lines
315 B
Nix
Raw Normal View History

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