summary refs log tree commit diff
path: root/pkgs/applications/emulators/gens-gs
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/gens-gs
parent19574af0af3ffaf7c9e359744ed32556f34536bd (diff)
downloadnixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.tar
nixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.tar.gz
nixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.tar.bz2
nixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.tar.lz
nixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.tar.xz
nixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.tar.zst
nixpkgs-8d65e832f0a18f60e2040940c80d96373ac8b88c.zip
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/gens-gs')
-rw-r--r--pkgs/applications/emulators/gens-gs/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/gens-gs/default.nix b/pkgs/applications/emulators/gens-gs/default.nix
new file mode 100644
index 00000000000..0fbd12fc365
--- /dev/null
+++ b/pkgs/applications/emulators/gens-gs/default.nix
@@ -0,0 +1,26 @@
+{ lib, stdenv, fetchurl, pkg-config, gtk2, SDL, nasm, zlib, libpng, libGLU, libGL }:
+
+stdenv.mkDerivation rec {
+  pname = "gens-gs";
+  version = "7";
+
+  src = fetchurl {
+    url = "http://retrocdn.net/images/6/6d/Gens-gs-r${version}.tar.gz";
+    sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ gtk2 SDL nasm zlib libpng libGLU libGL ];
+
+  # Work around build failures on recent GTK.
+  # See http://ubuntuforums.org/showthread.php?p=10535837
+  NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE";
+
+  meta = with lib; {
+    homepage = "https://segaretro.org/Gens/GS";
+    description = "A Genesis/Mega Drive emulator";
+    platforms = [ "i686-linux" ];
+    license = licenses.gpl2Plus;
+    maintainers = [ maintainers.eelco ];
+  };
+}