summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/SDL_image/default.nix20
-rw-r--r--pkgs/development/libraries/SDL_ttf/default.nix20
-rw-r--r--pkgs/development/python-modules/pil/default.nix28
-rw-r--r--pkgs/development/python-modules/pygame/default.nix30
-rw-r--r--pkgs/top-level/all-packages.nix23
5 files changed, 121 insertions, 0 deletions
diff --git a/pkgs/development/libraries/SDL_image/default.nix b/pkgs/development/libraries/SDL_image/default.nix
new file mode 100644
index 00000000000..93e1cc31f44
--- /dev/null
+++ b/pkgs/development/libraries/SDL_image/default.nix
@@ -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.
+";
+  };
+}
diff --git a/pkgs/development/libraries/SDL_ttf/default.nix b/pkgs/development/libraries/SDL_ttf/default.nix
new file mode 100644
index 00000000000..77b95d02cc3
--- /dev/null
+++ b/pkgs/development/libraries/SDL_ttf/default.nix
@@ -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.
+";
+  };
+}
diff --git a/pkgs/development/python-modules/pil/default.nix b/pkgs/development/python-modules/pil/default.nix
new file mode 100644
index 00000000000..863366f1a42
--- /dev/null
+++ b/pkgs/development/python-modules/pil/default.nix
@@ -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.
+";
+  };
+}
diff --git a/pkgs/development/python-modules/pygame/default.nix b/pkgs/development/python-modules/pygame/default.nix
new file mode 100644
index 00000000000..0ed717479d8
--- /dev/null
+++ b/pkgs/development/python-modules/pygame/default.nix
@@ -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.
+";
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f0470402e3a..42cb2f4cb83 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;
   };