summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2019-10-30 22:32:30 +0300
committergnidorah <gnidorah@users.noreply.github.com>2019-11-03 20:02:16 +0300
commitf73694a64a51586b71fd86837592b794c1fc420e (patch)
treed36c32b9157bdbf18ebafdb3b5157f74b1d42e88 /pkgs/misc/emulators
parentd296e58f6dcfbed9589d9e2ed1ff2d480982148f (diff)
downloadnixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.tar
nixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.tar.gz
nixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.tar.bz2
nixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.tar.lz
nixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.tar.xz
nixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.tar.zst
nixpkgs-f73694a64a51586b71fd86837592b794c1fc420e.zip
mess: drop
MAME and MESS are now combined as one distribution as of the 0.162 release and offered as a MAME binary (MESS is included in the build).
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/mess/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/misc/emulators/mess/default.nix b/pkgs/misc/emulators/mess/default.nix
deleted file mode 100644
index fc63bf705f4..00000000000
--- a/pkgs/misc/emulators/mess/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ stdenv, fetchurl, unzip, pkgconfig, SDL, gtk2, GConf, libGLU_combined
-, expat, zlib }:
-
-let
-
-  version = "139";
-
-  mameSrc = fetchurl {
-    url = "https://github.com/mamedev/mame/releases/download/mame0139/mame0${version}s.zip";
-    sha256 = "1mpkwxfz38cgxzvlni2y3fxas3b8qmnzj2ik2zzbd8mr622jdp79";
-  };
-
-  messSrc = fetchurl {
-    url = "http://www.progettosnaps.net/MESS/src/mess0${version}s.zip";
-    name = "mess0139s.zip";
-    sha256 = "1v892cg6wn8cdwc8pf1gcqqdb1v1v295r6jw2hf58svwx3h27xyy";
-  };
-
-in
-
-stdenv.mkDerivation {
-  name = "mess-0.${version}";
-
-  unpackPhase =
-    ''
-      unzip ${mameSrc}
-      # Yes, the MAME distribution is a zip file containing a zip file...
-      unzip mame.zip
-      unzip -o ${messSrc}
-    '';
-
-  makeFlags = "TARGET=mess BUILD_EXPAT= BUILD_ZLIB= NOWERROR=1";
-
-  buildInputs =
-    [ unzip pkgconfig SDL gtk2 GConf libGLU_combined expat zlib ];
-
-  installPhase =
-    ''
-      mkdir -p $out/bin
-      cp mess* $out/bin/mess
-    '';
-
-  meta = {
-    homepage = https://www.mess.org/;
-    license = "non-commercial";
-    description = "Multi Emulator Super System, an emulator of many game consoles and computer systems";
-    broken = true;
-  };
-}