libretro.vice-*: init at 0-unstable-2025-01-11 (#374359)
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
mkLibretroCore,
|
||||
type ? "x64",
|
||||
}:
|
||||
mkLibretroCore {
|
||||
core = "vice-${type}";
|
||||
version = "0-unstable-2025-01-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libretro";
|
||||
repo = "vice-libretro";
|
||||
rev = "5afa33f347306f168ff0b4c54a7825895dd07b50";
|
||||
hash = "sha256-D0DSKgqZV8EluRry2qSm7qnWnvwwDWz91G66W4nF2Kk=";
|
||||
};
|
||||
|
||||
makefile = "Makefile";
|
||||
|
||||
env = {
|
||||
EMUTYPE = "${type}";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Port of vice to libretro";
|
||||
homepage = "https://github.com/libretro/vice-libretro";
|
||||
license = lib.licenses.gpl2;
|
||||
};
|
||||
}
|
||||
@@ -189,6 +189,26 @@ lib.makeScope newScope (self: {
|
||||
|
||||
vecx = self.callPackage ./cores/vecx.nix { };
|
||||
|
||||
vice-x64 = self.callPackage ./cores/vice.nix { type = "x64"; };
|
||||
|
||||
vice-x128 = self.callPackage ./cores/vice.nix { type = "x128"; };
|
||||
|
||||
vice-x64dtv = self.callPackage ./cores/vice.nix { type = "x64dtv"; };
|
||||
|
||||
vice-x64sc = self.callPackage ./cores/vice.nix { type = "x64sc"; };
|
||||
|
||||
vice-xcbm2 = self.callPackage ./cores/vice.nix { type = "xcbm2"; };
|
||||
|
||||
vice-xcbm5x0 = self.callPackage ./cores/vice.nix { type = "xcbm5x0"; };
|
||||
|
||||
vice-xpet = self.callPackage ./cores/vice.nix { type = "xpet"; };
|
||||
|
||||
vice-xplus4 = self.callPackage ./cores/vice.nix { type = "xplus4"; };
|
||||
|
||||
vice-xscpu64 = self.callPackage ./cores/vice.nix { type = "xscpu64"; };
|
||||
|
||||
vice-xvic = self.callPackage ./cores/vice.nix { type = "xvic"; };
|
||||
|
||||
virtualjaguar = self.callPackage ./cores/virtualjaguar.nix { };
|
||||
|
||||
yabause = self.callPackage ./cores/yabause.nix { };
|
||||
|
||||
Reference in New Issue
Block a user