summary refs log tree commit diff
path: root/pkgs/games/scummvm/default.nix
blob: 91c3114694b7f1e3d297a5372e9d7d9af00ec084 (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
{ stdenv, fetchurl, SDL, zlib, libmpeg2, libmad, libogg, libvorbis, flac, alsaLib }:

stdenv.mkDerivation rec {
  name = "scummvm-1.8.0";

  src = fetchurl {
    url = "mirror://sourceforge/scummvm/${name}.tar.bz2";
    sha256 = "0f3zgvz886lk9ps0v333aq74vx6grlx68hg14gfaxcvj55g73v01";
  };

  buildInputs = [ SDL zlib libmpeg2 libmad libogg libvorbis flac alsaLib ];

  hardeningDisable = [ "format" ];

  crossAttrs = {
    preConfigure = ''
      # Remove the --build flag set by the gcc cross wrapper setup
      # hook
      export configureFlags="--host=${stdenv.cross.config}"
    '';
    postConfigure = ''
      # They use 'install -s', that calls the native strip instead of the cross
      sed -i 's/-c -s/-c/' ports.mk;
    '';
  };

  meta = {
    description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
    homepage = http://www.scummvm.org/;
    platforms = stdenv.lib.platforms.linux;
  };
}