2013-06-09 06:12:15 +02:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig
|
|
|
|
, SDL, SDL_image, SDL_mixer, SDL_ttf, libpng, libjpeg
|
|
|
|
}:
|
2008-10-07 00:07:53 +02:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
stdenv.mkDerivation {
|
2013-06-09 06:12:15 +02:00
|
|
|
name = "pygame-1.9.1";
|
2007-08-09 19:33:18 +02:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2013-06-09 06:12:15 +02:00
|
|
|
url = "http://www.pygame.org/ftp/pygame-1.9.1release.tar.gz";
|
|
|
|
sha256 = "0cyl0ww4fjlf289pjxa53q4klyn55ajvkgymw0qrdgp4593raq52";
|
2007-08-09 19:33:18 +02:00
|
|
|
};
|
|
|
|
|
2013-06-09 06:12:15 +02:00
|
|
|
buildInputs = [
|
|
|
|
python pkgconfig SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
|
|
|
|
];
|
|
|
|
|
|
|
|
patches = [ ./pygame-v4l.patch ];
|
|
|
|
|
2008-10-07 00:07:53 +02:00
|
|
|
configurePhase = ''
|
2013-06-09 06:12:15 +02:00
|
|
|
for i in ${SDL_image} ${SDL_mixer} ${SDL_ttf} ${libpng} ${libjpeg}; do
|
|
|
|
sed -e "/origincdirs =/a'$i/include'," -i config_unix.py
|
|
|
|
sed -e "/origlibdirs =/aoriglibdirs += '$i/lib'," -i config_unix.py
|
|
|
|
done
|
|
|
|
|
|
|
|
yes Y | LOCALBASE=/ python config.py
|
2008-10-07 00:07:53 +02:00
|
|
|
'';
|
2007-08-09 19:33:18 +02:00
|
|
|
|
2013-06-09 06:12:15 +02:00
|
|
|
buildPhase = "python setup.py build";
|
2007-08-09 19:33:18 +02:00
|
|
|
|
2013-06-09 06:12:15 +02:00
|
|
|
installPhase = "python setup.py install --prefix=$out";
|
2008-10-07 00:47:20 +02:00
|
|
|
|
2007-08-09 19:33:18 +02:00
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "Python library for games";
|
2013-06-09 06:12:15 +02:00
|
|
|
homepage = "http://www.pygame.org/";
|
|
|
|
licences = "LGPLv2.1+";
|
2007-08-09 19:33:18 +02:00
|
|
|
};
|
|
|
|
}
|