mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
* Latest ScummVM.
svn path=/nixpkgs/trunk/; revision=8652
This commit is contained in:
parent
74ac11507f
commit
a533c69b39
@ -1,10 +1,17 @@
|
||||
{stdenv, fetchurl, SDL}:
|
||||
{stdenv, fetchurl, SDL, zlib, alsaLib}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "scummvm-0.9.0";
|
||||
name = "scummvm-0.9.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/scummvm-0.9.0.tar.bz2;
|
||||
md5 = "5eede9c97d1883f80770a3e211419783";
|
||||
url = http://ovh.dl.sourceforge.net/sourceforge/scummvm/scummvm-0.9.1.tar.bz2;
|
||||
sha256 = "06jxq4lbb0s1axpz0md8cjkx8i8086qgkafrhlfzi941cb0dkmaw";
|
||||
};
|
||||
|
||||
buildInputs = [SDL zlib alsaLib];
|
||||
|
||||
meta = {
|
||||
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
||||
homepage = http://www.scummvm.org/;
|
||||
};
|
||||
buildInputs = [SDL];
|
||||
}
|
||||
|
@ -3023,7 +3023,7 @@ rec {
|
||||
};
|
||||
|
||||
scummvm = import ../games/scummvm {
|
||||
inherit fetchurl stdenv SDL;
|
||||
inherit fetchurl stdenv SDL zlib alsaLib;
|
||||
};
|
||||
|
||||
ut2004demo = import ../games/ut2004demo {
|
||||
|
Loading…
Reference in New Issue
Block a user