mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
libretro.fuse: move to retroarch/cores
This commit is contained in:
parent
225b5a4876
commit
893a1384e4
@ -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";
|
||||
|
22
pkgs/applications/emulators/retroarch/cores/fuse.nix
Normal file
22
pkgs/applications/emulators/retroarch/cores/fuse.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user