mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
libretro.gpsp: move to retroarch/cores
This commit is contained in:
parent
c887658db4
commit
d5623dc94a
@ -161,14 +161,7 @@ lib.makeScope newScope (self: rec {
|
||||
|
||||
genesis-plus-gx = self.callPackage ./cores/genesis-plus-gx.nix { };
|
||||
|
||||
gpsp = mkLibretroCore {
|
||||
core = "gpsp";
|
||||
makefile = "Makefile";
|
||||
meta = {
|
||||
description = "Port of gpSP to libretro";
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
};
|
||||
gpsp = self.callPackage ./cores/gpsp.nix { };
|
||||
|
||||
gw = mkLibretroCore {
|
||||
core = "gw";
|
||||
|
24
pkgs/applications/emulators/retroarch/cores/gpsp.nix
Normal file
24
pkgs/applications/emulators/retroarch/cores/gpsp.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
mkLibretroCore,
|
||||
}:
|
||||
mkLibretroCore {
|
||||
core = "gpsp";
|
||||
version = "unstable-2024-09-18";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libretro";
|
||||
repo = "gpsp";
|
||||
rev = "36061caf8cc5e15c3c92fb772b6b8560c7c59ec7";
|
||||
hash = "sha256-o36OUdgm7p+rAMN6R2e2Lqi4oBLTyxziw7Lr20ERBg0=";
|
||||
};
|
||||
|
||||
makefile = "Makefile";
|
||||
|
||||
meta = {
|
||||
description = "Port of gpSP to libretro";
|
||||
homepage = "https://github.com/libretro/gpsp";
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user