2014-11-26 20:50:48 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, pkgconfig, smpeg, libX11
|
|
|
|
, SDL, SDL_image, SDL_mixer, SDL_ttf, libpng, libjpeg, portmidi
|
2013-06-09 04:12:15 +00:00
|
|
|
}:
|
2008-10-06 22:07:53 +00:00
|
|
|
|
2014-11-26 20:50:48 +00:00
|
|
|
buildPythonPackage {
|
2013-06-09 04:12:15 +00:00
|
|
|
name = "pygame-1.9.1";
|
2007-08-09 17:33:18 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2013-06-09 04:12:15 +00:00
|
|
|
url = "http://www.pygame.org/ftp/pygame-1.9.1release.tar.gz";
|
|
|
|
sha256 = "0cyl0ww4fjlf289pjxa53q4klyn55ajvkgymw0qrdgp4593raq52";
|
2007-08-09 17:33:18 +00:00
|
|
|
};
|
|
|
|
|
2013-06-09 04:12:15 +00:00
|
|
|
buildInputs = [
|
2014-11-26 20:50:48 +00:00
|
|
|
pkgconfig SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
|
|
|
|
smpeg portmidi libX11
|
2013-06-09 04:12:15 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
patches = [ ./pygame-v4l.patch ];
|
|
|
|
|
2014-11-26 20:50:48 +00:00
|
|
|
preConfigure = ''
|
|
|
|
for i in ${SDL_image} ${SDL_mixer} ${SDL_ttf} ${libpng} ${libjpeg} ${portmidi} ${libX11}; do
|
2013-06-09 04:12:15 +00:00
|
|
|
sed -e "/origincdirs =/a'$i/include'," -i config_unix.py
|
|
|
|
sed -e "/origlibdirs =/aoriglibdirs += '$i/lib'," -i config_unix.py
|
|
|
|
done
|
|
|
|
|
2014-11-26 20:50:48 +00:00
|
|
|
LOCALBASE=/ python config.py
|
2008-10-06 22:07:53 +00:00
|
|
|
'';
|
2007-08-09 17:33:18 +00:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "Python library for games";
|
2013-06-09 04:12:15 +00:00
|
|
|
homepage = "http://www.pygame.org/";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2007-08-09 17:33:18 +00:00
|
|
|
};
|
|
|
|
}
|