6dc839d344
svn path=/nixpkgs/branches/stdenv-updates/; revision=24429
30 lines
806 B
Nix
30 lines
806 B
Nix
{stdenv, fetchurl, SDL, zlib, mpeg2dec}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "scummvm-1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/scummvm/scummvm-1.2.0.tar.bz2;
|
|
sha256 = "1h6sskqjg0cqyan1xkw1vbdqnfpqg42cgbmzpgclmhg3gi6mkz1z";
|
|
};
|
|
|
|
buildInputs = [SDL zlib mpeg2dec];
|
|
|
|
crossAttrs = {
|
|
preConfigure = ''
|
|
# Remove the --build flag set by the gcc cross wrapper setup
|
|
# hook
|
|
export configureFlags="--host=${stdenv.cross.config}"
|
|
'';
|
|
postConfigure = ''
|
|
# They use 'install -s', that calls the native strip instead of the cross
|
|
sed -i 's/-c -s/-c/' ports.mk;
|
|
'';
|
|
};
|
|
|
|
meta = {
|
|
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
|
homepage = http://www.scummvm.org/;
|
|
};
|
|
}
|