summary refs log tree commit diff
path: root/pkgs/misc/emulators/gens-gs/default.nix
blob: bfe43403bc6c415548baea81390d362c3d4f3dcb (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
{ stdenv, fetchurl, pkgconfig, gtk2, SDL, nasm, zlib, libpng, mesa }:

stdenv.mkDerivation { 
  name = "gens-gs-7";

  src = fetchurl {
    url = http://segaretro.org/images/6/6d/Gens-gs-r7.tar.gz;
    sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ gtk2 SDL nasm zlib libpng mesa ];

  # Work around build failures on recent GTK+.
  # See http://ubuntuforums.org/showthread.php?p=10535837
  NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE";

  meta = {
    homepage = http://segaretro.org/Gens/GS;
    description = "A Genesis/Mega Drive emulator";
    platforms = [ "i686-linux" ];
    maintainers = [ stdenv.lib.maintainers.eelco ];
  };
}