summary refs log tree commit diff
path: root/pkgs/games/tennix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-01 19:55:03 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-01 19:55:03 +0000
commit936f161c001e677b1772952f288308e21560c392 (patch)
tree249e5da87ea7c9e794ebf8d44366933a6af31145 /pkgs/games/tennix
parent41e5edb0b380c5766940d671a020871abb3148ea (diff)
downloadnixpkgs-936f161c001e677b1772952f288308e21560c392.tar
nixpkgs-936f161c001e677b1772952f288308e21560c392.tar.gz
nixpkgs-936f161c001e677b1772952f288308e21560c392.tar.bz2
nixpkgs-936f161c001e677b1772952f288308e21560c392.tar.lz
nixpkgs-936f161c001e677b1772952f288308e21560c392.tar.xz
nixpkgs-936f161c001e677b1772952f288308e21560c392.tar.zst
nixpkgs-936f161c001e677b1772952f288308e21560c392.zip
Adding (quite blindly) some gnome packages to get gnucash built.
svn path=/nixpkgs/trunk/; revision=19758
Diffstat (limited to 'pkgs/games/tennix')
-rw-r--r--pkgs/games/tennix/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/games/tennix/default.nix b/pkgs/games/tennix/default.nix
new file mode 100644
index 00000000000..f67c7a312e8
--- /dev/null
+++ b/pkgs/games/tennix/default.nix
@@ -0,0 +1,23 @@
+{stdenv, fetchurl, SDL, SDL_mixer, SDL_image, SDL_ttf} :
+
+stdenv.mkDerivation rec {
+  name = "tennix-1.0";
+  src = fetchurl {
+    url = "http://icculus.org/tennix/downloads/${name}.tar.gz";
+    sha256 = "18rd7h1j5skpkh037misixw9gigzc7qy13vrnrs21rphcfxzpifn";
+  };
+
+
+  preConfigure = ''
+    makeFlags="PREFIX=$out USE_PYTHON=0"
+    installFlags="PREFIX=$out install"
+  '';
+
+  buildInputs = [ SDL SDL_mixer SDL_image SDL_ttf ];
+
+  meta = {
+    homepage = http://icculus.org/tennix/
+    description = "Tennix 2009 World Tennis Championship Tour";
+    license = "GPLv2+";
+  };
+}