mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
libretro.blastem: move to retroarch/cores
This commit is contained in:
parent
4b51fe0a49
commit
573e6d71af
@ -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";
|
||||
|
23
pkgs/applications/emulators/retroarch/cores/blastem.nix
Normal file
23
pkgs/applications/emulators/retroarch/cores/blastem.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user