about summary refs log tree commit diff
path: root/pkgs/games/scummvm/default.nix
blob: 458842ef317d1a9fbc853c07a3d607c6c372ee96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, SDL, zlib, mpeg2dec}:

stdenv.mkDerivation {
  name = "scummvm-0.12.0";
  
  src = fetchurl {
    url = mirror://sourceforge/scummvm/scummvm-0.12.0.tar.bz2;
    sha256 = "16g6qgvlq2rp2q53spmc5li5y44aamr1hvz1v4wrdl28nsxs76nv";
  };
  
  buildInputs = [SDL zlib mpeg2dec];

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