mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Added pygame and some of its dependencies. Also added Python Imaging library.
svn path=/nixpkgs/trunk/; revision=9082
This commit is contained in:
parent
254b6fe6d3
commit
422433d1b9
20
pkgs/development/libraries/SDL_image/default.nix
Normal file
20
pkgs/development/libraries/SDL_image/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "SDL_image-1.2.6";
|
||||
|
||||
src = args.
|
||||
fetchurl {
|
||||
url = http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.6.tar.gz;
|
||||
sha256 = "1i3f72dw3i3l6d77dk81gw57sp0629rng9k76qb37brlz7dv3z48";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [SDL libpng libjpeg libtiff libungif libXpm]);
|
||||
|
||||
postInstall = "ln -s \${out}/include/SDL/SDL_image.h \${out}/include/";
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
SDL image library.
|
||||
";
|
||||
};
|
||||
}
|
20
pkgs/development/libraries/SDL_ttf/default.nix
Normal file
20
pkgs/development/libraries/SDL_ttf/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "SDL_image-1.2.6";
|
||||
|
||||
src = args.
|
||||
fetchurl {
|
||||
url = http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.9.tar.gz;
|
||||
sha256 = "0ls6anmlmwrmy21p3y9nfyl6fkwz4jpgh74kw7xd0hwbg5v8h95l";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [SDL freetype]);
|
||||
|
||||
postInstall = "ln -s \${out}/include/SDL/SDL_ttf.h \${out}/include/";
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
SDL image library.
|
||||
";
|
||||
};
|
||||
}
|
28
pkgs/development/python-modules/pil/default.nix
Normal file
28
pkgs/development/python-modules/pil/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "python-imaging-1.1.6";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://effbot.org/downloads/Imaging-1.1.6.tar.gz;
|
||||
sha256 = "141zidl3s9v4vfi3nsbg42iq1lc2a932gprqr1kij5hrnn53bmvx";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [python zlib libtiff libjpeg freetype]);
|
||||
|
||||
configurePhase = (with args;"
|
||||
sed -e 's@FREETYPE_ROOT = None@FREETYPE_ROOT = libinclude(\"${freetype}\")@' -i setup.py
|
||||
sed -e 's@JPEG_ROOT = None@JPEG_ROOT = libinclude(\"${libjpeg}\")@' -i setup.py
|
||||
sed -e 's@TIFF_ROOT = None@TIFF_ROOT = libinclude(\"${libtiff}\")@' -i setup.py
|
||||
sed -e 's@ZLIB_ROOT = None@ZLIB_ROOT = libinclude(\"${zlib}\")@' -i setup.py
|
||||
");
|
||||
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = "yes Y | python setup.py install --prefix=\${out}";
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
Python Imaging library.
|
||||
";
|
||||
};
|
||||
}
|
30
pkgs/development/python-modules/pygame/default.nix
Normal file
30
pkgs/development/python-modules/pygame/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "pygame-1.7";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://www.pygame.org/ftp/pygame-1.7.1release.tar.gz ;
|
||||
sha256 = "0hl0rmgjcqj217fibwyilz7w9jpg0kh7hsa7vyzd4cgqyliskpqi";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [python pkgconfig SDL SDL_image SDL_ttf]);
|
||||
|
||||
configurePhase = (with args;
|
||||
"
|
||||
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
|
||||
yes Y | python config.py ");
|
||||
|
||||
buildPhase = "yes Y | python setup.py build";
|
||||
|
||||
installPhase = "yes Y | python setup.py install --prefix=\${out} ";
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
Python library for games.
|
||||
";
|
||||
};
|
||||
}
|
|
@ -1767,10 +1767,19 @@ rec {
|
|||
alsaSupport = true;
|
||||
};
|
||||
|
||||
SDL_image = import ../development/libraries/SDL_image {
|
||||
inherit fetchurl stdenv SDL libjpeg libungif libtiff libpng;
|
||||
inherit (xlibs) libXpm;
|
||||
};
|
||||
|
||||
SDL_mixer = import ../development/libraries/SDL_mixer {
|
||||
inherit fetchurl stdenv SDL libogg libvorbis;
|
||||
};
|
||||
|
||||
SDL_ttf = import ../development/libraries/SDL_ttf {
|
||||
inherit fetchurl stdenv SDL freetype;
|
||||
};
|
||||
|
||||
slang = import ../development/libraries/slang {
|
||||
inherit fetchurl stdenv pcre libpng;
|
||||
};
|
||||
|
@ -2174,6 +2183,10 @@ rec {
|
|||
inherit fetchurl stdenv python db4;
|
||||
};
|
||||
|
||||
pil = import ../development/python-modules/pil {
|
||||
inherit fetchurl stdenv python zlib libtiff libjpeg freetype;
|
||||
};
|
||||
|
||||
psyco = import ../development/python-modules/psyco {
|
||||
inherit fetchurl stdenv python;
|
||||
};
|
||||
|
@ -2186,6 +2199,11 @@ rec {
|
|||
inherit fetchurl stdenv python gmp;
|
||||
};
|
||||
|
||||
pygame = import ../development/python-modules/pygame {
|
||||
inherit fetchurl stdenv python pkgconfig SDL SDL_image
|
||||
SDL_ttf;
|
||||
};
|
||||
|
||||
pygobject = import ../development/python-modules/pygobject {
|
||||
inherit fetchurl stdenv python pkgconfig;
|
||||
inherit (gtkLibs) glib;
|
||||
|
@ -3437,6 +3455,11 @@ rec {
|
|||
inherit fetchurl stdenv SDL zlib mpeg2dec;
|
||||
};
|
||||
|
||||
/*tpm = import ../games/thePenguinMachine {
|
||||
inherit stdenv fetchurl pil pygame SDL;
|
||||
python24 = python;
|
||||
};*/
|
||||
|
||||
ut2004demo = import ../games/ut2004demo {
|
||||
inherit fetchurl stdenv xlibs mesa;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue