summary refs log tree commit diff
path: root/pkgs/misc/emulators/mess/default.nix
blob: 990f1e7106e1f8e057fff510f9323530bedae889 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ stdenv, fetchurl, unzip, pkgconfig, SDL, gtk, GConf, mesa
, expat, zlib }:

let

  version = "139";

  mameSrc = fetchurl {
    url = "http://www.aarongiles.com/mirror/releases/mame0${version}s.zip";
    sha256 = "1mpkwxfz38cgxzvlni2y3fxas3b8qmnzj2ik2zzbd8mr622jdp79";
  };
  
  messSrc = fetchurl {
    url = "http://mess.redump.net/_media/downloads: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 gtk GConf mesa expat zlib ];

  installPhase =
    ''
      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";
  };
}