2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv, fetchFromGitHub, gtk3, rgbds, SDL2, wrapGAppsHook, glib }:
|
2020-09-18 13:53:58 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "sameboy";
|
2022-09-19 03:59:27 +01:00
|
|
|
|
version = "0.15.6";
|
2020-09-18 13:53:58 +01:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "LIJI32";
|
|
|
|
|
repo = "SameBoy";
|
|
|
|
|
rev = "v${version}";
|
2022-09-19 03:59:27 +01:00
|
|
|
|
sha256 = "sha256-WsZuOKq/Dfk2zgYFXSwZPUuPrJQJ3y3mJHL6s61mTig=";
|
2020-09-18 13:53:58 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
# glib and wrapGAppsHook are needed to make the Open ROM menu work.
|
|
|
|
|
nativeBuildInputs = [ rgbds glib wrapGAppsHook ];
|
|
|
|
|
buildInputs = [ SDL2 ];
|
|
|
|
|
|
2021-02-27 19:04:07 +00:00
|
|
|
|
makeFlags = [
|
|
|
|
|
"CONF=release"
|
2021-02-28 15:42:53 +00:00
|
|
|
|
"FREEDESKTOP=true"
|
2021-02-27 19:04:07 +00:00
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
|
substituteInPlace OpenDialog/gtk.c \
|
|
|
|
|
--replace '"libgtk-3.so"' '"${gtk3}/lib/libgtk-3.so"'
|
2020-09-18 13:53:58 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2020-09-18 13:53:58 +01:00
|
|
|
|
homepage = "https://sameboy.github.io";
|
|
|
|
|
description = "Game Boy, Game Boy Color, and Super Game Boy emulator";
|
|
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
|
SameBoy is a user friendly Game Boy, Game Boy Color and Super
|
|
|
|
|
Game Boy emulator for macOS, Windows and Unix-like platforms.
|
|
|
|
|
SameBoy is extremely accurate and includes a wide range of
|
|
|
|
|
powerful debugging features, making it ideal for both casual
|
|
|
|
|
players and developers. In addition to accuracy and developer
|
|
|
|
|
capabilities, SameBoy has all the features one would expect from
|
|
|
|
|
an emulator – from save states to scaling filters.
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ NieDzejkob ];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|