about summary refs log tree commit diff
path: root/pkgs/misc/emulators/mess
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-03-08 16:13:49 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-03-08 16:14:19 +0200
commit413bc03986801af2dcad2e3672b4c42d03390ac2 (patch)
treefd9b6c8d2994aac0558cd907e42812740507ebf9 /pkgs/misc/emulators/mess
parentc8402dde1547dd3faaadba5d08015cd07c5c98a4 (diff)
mess: Mark broken
Even fixing the source urls doesn't make it build.
Diffstat (limited to 'pkgs/misc/emulators/mess')
-rw-r--r--pkgs/misc/emulators/mess/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/misc/emulators/mess/default.nix b/pkgs/misc/emulators/mess/default.nix
index 8f232a6023c7d..98bd8bae3e021 100644
--- a/pkgs/misc/emulators/mess/default.nix
+++ b/pkgs/misc/emulators/mess/default.nix
@@ -6,12 +6,12 @@ let
   version = "139";
 
   mameSrc = fetchurl {
-    url = "http://www.aarongiles.com/mirror/releases/mame0${version}s.zip";
+    url = "https://github.com/mamedev/mame/releases/download/mame0139/mame0${version}s.zip";
     sha256 = "1mpkwxfz38cgxzvlni2y3fxas3b8qmnzj2ik2zzbd8mr622jdp79";
   };
-  
+
   messSrc = fetchurl {
-    url = "http://mess.redump.net/_media/downloads:mess0${version}s.zip";
+    url = "http://www.progettosnaps.net/MESS/src/mess0${version}s.zip";
     name = "mess0139s.zip";
     sha256 = "1v892cg6wn8cdwc8pf1gcqqdb1v1v295r6jw2hf58svwx3h27xyy";
   };
@@ -39,10 +39,11 @@ stdenv.mkDerivation {
       mkdir -p $out/bin
       cp mess* $out/bin/mess 
     '';
-    
+
   meta = {
     homepage = http://www.mess.org/;
     license = "non-commercial";
     description = "Multi Emulator Super System, an emulator of many game consoles and computer systems";
+    broken = true;
   };
 }