nixpkgs/pkgs/applications/emulators/sameboy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, gtk3, rgbds, SDL2, wrapGAppsHook, glib }:
2020-09-18 12:53:58 +00:00
stdenv.mkDerivation rec {
pname = "sameboy";
2024-04-12 19:34:26 +00:00
version = "0.16.3";
2020-09-18 12:53:58 +00:00
src = fetchFromGitHub {
owner = "LIJI32";
repo = "SameBoy";
rev = "v${version}";
2024-04-12 19:34:26 +00:00
sha256 = "sha256-sQWmuF1dQgvW9WyOxgxaupTUcde3KzzYiGv+v1N5ssk=";
2020-09-18 12:53:58 +00: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 12:53:58 +00:00
'';
meta = with lib; {
2020-09-18 12:53:58 +00:00
homepage = "https://sameboy.github.io";
description = "Game Boy, Game Boy Color, and Super Game Boy emulator";
mainProgram = "sameboy";
2020-09-18 12:53:58 +00:00
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;
};
}