libretro.fuse: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 16:16:44 +00:00
parent 225b5a4876
commit 893a1384e4
2 changed files with 23 additions and 7 deletions

View File

@ -155,13 +155,7 @@ lib.makeScope newScope (self: rec {
freeintv = self.callPackage ./cores/freeintv.nix { };
fuse = mkLibretroCore {
core = "fuse";
meta = {
description = "Port of the Fuse Unix Spectrum Emulator to libretro";
license = lib.licenses.gpl3Only;
};
};
fuse = self.callPackage ./cores/fuse.nix { };
gambatte = mkLibretroCore {
core = "gambatte";

View File

@ -0,0 +1,22 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "fuse";
version = "unstable-2024-09-20";
src = fetchFromGitHub {
owner = "libretro";
repo = "fuse-libretro";
rev = "6fd07d90acc38a1b8835bf16539b833f21aaa38f";
hash = "sha256-q5vcFNr1RBeTaw1R2LDY9xLU1oGeWtPemTdliWR+39s=";
};
meta = {
description = "Port of the Fuse Unix Spectrum Emulator to libretro";
homepage = "https://github.com/libretro/fuse-libretro";
license = lib.licenses.gpl3Only;
};
}