summary refs log tree commit diff
path: root/pkgs/games/scummvm/default.nix
blob: d508ce61a6d76409ef663482a402439744f08a16 (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.13.1";
  
  src = fetchurl {
    url = mirror://sourceforge/scummvm/scummvm-0.13.1.tar.bz2;
    sha256 = "1nd089673w775xs6hk9z780l18a008z0srli3cf16aq2a8rh1s23";
  };
  
  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/;
  };
}