libretro.blastem: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 12:28:13 +00:00
parent 4b51fe0a49
commit 573e6d71af
2 changed files with 24 additions and 8 deletions

View File

@ -113,14 +113,7 @@ lib.makeScope newScope (self: rec {
beetle-wswan = self.callPackage ./cores/beetle-wswan.nix { };
blastem = mkLibretroCore {
core = "blastem";
meta = {
description = "Port of BlastEm to libretro";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.x86;
};
};
blastem = self.callPackage ./cores/blastem.nix { };
bluemsx = mkLibretroCore {
core = "bluemsx";

View File

@ -0,0 +1,23 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "blastem";
version = "unstable-2022-07-26";
src = fetchFromGitHub {
owner = "libretro";
repo = "blastem";
rev = "277e4a62668597d4f59cadda1cbafb844f981d45";
hash = "sha256-EHvKElPw8V5Z6LnMaQXBCdM4niLIlF3aBm8dRbeYXHs=";
};
meta = {
description = "Port of BlastEm to libretro";
homepage = "https://github.com/libretro/blastem";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.x86;
};
}