forked from mirrors/nixpkgs
package residualvm 0.1.1
ResidualVM is an interpreter for LucasArts' Lua-based 3D adventure games like Grim Fandango. From: #1118.
This commit is contained in:
parent
4e60450858
commit
9176ad1808
30
pkgs/games/residualvm/default.nix
Normal file
30
pkgs/games/residualvm/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchurl, SDL, zlib, libmpeg2, libmad, libogg, libvorbis, flac, alsaLib
|
||||
, openglSupport ? false, mesa ? null
|
||||
}:
|
||||
|
||||
assert openglSupport -> mesa != null;
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.1.1";
|
||||
name = "residualvm-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/residualvm/residualvm-${version}-sources.tar.bz2";
|
||||
sha256 = "99c419b13885a49bdfc10a50a3a6000fd1ba9504f6aae04c74b840ec6f57a963";
|
||||
};
|
||||
|
||||
buildInputs = [ stdenv SDL zlib libmpeg2 libmad libogg libvorbis flac alsaLib ]
|
||||
++ optional openglSupport [ mesa ];
|
||||
|
||||
configureFlags="--enable-all-engines";
|
||||
|
||||
meta = {
|
||||
description = "Interpreter for LucasArts' Lua-based 3D adventure games";
|
||||
homepage = http://residualvm.org/;
|
||||
repositories.git = https://github.com/residualvm/residualvm.git;
|
||||
licencse = licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -9291,6 +9291,10 @@ let
|
|||
|
||||
racer = callPackage ../games/racer { };
|
||||
|
||||
residualvm = callPackage ../games/residualvm {
|
||||
openglSupport = mesaSupported;
|
||||
};
|
||||
|
||||
rigsofrods = callPackage ../games/rigsofrods {
|
||||
mygui = myguiSvn;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue