summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/sameboy
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-15 23:28:16 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 01:38:20 -0300
commit8d65e832f0a18f60e2040940c80d96373ac8b88c (patch)
tree3d6ade66b2a81403e3852b80b9e7c660699b6ed6 /pkgs/applications/emulators/sameboy
parent19574af0af3ffaf7c9e359744ed32556f34536bd (diff)
Move misc/emulators to applications/emulators - part 1
Emulators form a class by themselves. So, they should be moved to applications/.
Diffstat (limited to 'pkgs/applications/emulators/sameboy')
-rw-r--r--pkgs/applications/emulators/sameboy/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/sameboy/default.nix b/pkgs/applications/emulators/sameboy/default.nix
new file mode 100644
index 000000000000..6838a7baaf2a
--- /dev/null
+++ b/pkgs/applications/emulators/sameboy/default.nix
@@ -0,0 +1,48 @@
+{ lib, stdenv, fetchFromGitHub, gtk3, rgbds, SDL2, wrapGAppsHook, glib }:
+
+stdenv.mkDerivation rec {
+ pname = "sameboy";
+ version = "0.14.7";
+
+ src = fetchFromGitHub {
+ owner = "LIJI32";
+ repo = "SameBoy";
+ rev = "v${version}";
+ sha256 = "sha256-rvcR1mp+lJ6ZFc9WYUK9FBVcG2vD5MoX6lY+AJsMaeQ=";
+ };
+
+ enableParallelBuilding = true;
+ # glib and wrapGAppsHook are needed to make the Open ROM menu work.
+ nativeBuildInputs = [ rgbds glib wrapGAppsHook ];
+ buildInputs = [ SDL2 ];
+
+ makeFlags = [
+ "CONF=release"
+ "FREEDESKTOP=true"
+ "PREFIX=$(out)"
+ ];
+
+ postPatch = ''
+ substituteInPlace OpenDialog/gtk.c \
+ --replace '"libgtk-3.so"' '"${gtk3}/lib/libgtk-3.so"'
+ '';
+
+ meta = with lib; {
+ 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;
+ };
+}