2008-01-30 18:20:48 +01:00
|
|
|
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
2007-08-09 19:33:18 +02:00
|
|
|
name = "pygame-1.7";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-08-09 19:33:18 +02:00
|
|
|
url = http://www.pygame.org/ftp/pygame-1.7.1release.tar.gz ;
|
|
|
|
sha256 = "0hl0rmgjcqj217fibwyilz7w9jpg0kh7hsa7vyzd4cgqyliskpqi";
|
|
|
|
};
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
buildInputs = [python pkgconfig SDL SDL_image SDL_ttf];
|
2007-08-09 19:33:18 +02:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
configurePhase =
|
2007-08-09 19:33:18 +02:00
|
|
|
"
|
|
|
|
export LOCALBASE=///
|
|
|
|
sed -e \"/origincdirs =/a'${SDL_image}/include/SDL','${SDL_image}/include',\" -i config_unix.py
|
|
|
|
sed -e \"/origlibdirs =/aoriglibdirs += '${SDL_image}/lib',\" -i config_unix.py
|
|
|
|
sed -e \"/origincdirs =/a'${SDL_ttf}/include/SDL','${SDL_ttf}/include',\" -i config_unix.py
|
|
|
|
sed -e \"/origlibdirs =/aoriglibdirs += '${SDL_ttf}/lib',\" -i config_unix.py
|
2008-01-30 18:20:48 +01:00
|
|
|
yes Y | python config.py ";
|
2007-08-09 19:33:18 +02:00
|
|
|
|
|
|
|
buildPhase = "yes Y | python setup.py build";
|
|
|
|
|
|
|
|
installPhase = "yes Y | python setup.py install --prefix=\${out} ";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "
|
|
|
|
Python library for games.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
}
|