about summary refs log tree commit diff
path: root/pkgs/misc/emulators/gens-gs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/emulators/gens-gs/default.nix')
-rw-r--r--pkgs/misc/emulators/gens-gs/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/misc/emulators/gens-gs/default.nix b/pkgs/misc/emulators/gens-gs/default.nix
deleted file mode 100644
index 0fbd12fc36511..0000000000000
--- a/pkgs/misc/emulators/gens-gs/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ 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 ];
-  };
-}