add scummvm (scummvm.sf.net)
svn path=/nixpkgs/trunk/; revision=6079
This commit is contained in:
parent
7154adfa34
commit
d9ec01e77f
10
pkgs/games/scummvm/default.nix
Normal file
10
pkgs/games/scummvm/default.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{stdenv, fetchurl, SDL}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "scummvm-0.9.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://surfnet.dl.sourceforge.net/sourceforge/scummvm/scummvm-0.9.0.tar.bz2;
|
||||||
|
md5 = "5eede9c97d1883f80770a3e211419783";
|
||||||
|
};
|
||||||
|
buildInputs = [SDL];
|
||||||
|
}
|
@ -2491,6 +2491,10 @@ rec {
|
|||||||
inherit (xlibs) xlibs;
|
inherit (xlibs) xlibs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
scummvm = (import ../games/scummvm) {
|
||||||
|
inherit fetchurl stdenv SDL;
|
||||||
|
};
|
||||||
|
|
||||||
quake3game = import ../games/quake3/game {
|
quake3game = import ../games/quake3/game {
|
||||||
inherit fetchurl stdenv x11 SDL mesa openal;
|
inherit fetchurl stdenv x11 SDL mesa openal;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user