nixpkgs/pkgs/games/scummvm/default.nix
Armijn Hemel 7445bc765c update python to 2.5.4
update scummvm to 0.13.1

svn path=/nixpkgs/trunk/; revision=15414
2009-04-30 14:01:25 +00:00

18 lines
467 B
Nix

{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/;
};
}