Adding (quite blindly) some gnome packages to get gnucash built.

svn path=/nixpkgs/trunk/; revision=19758
This commit is contained in:
Lluís Batlle i Rossell 2010-02-01 19:55:03 +00:00
parent 41e5edb0b3
commit 936f161c00
2 changed files with 27 additions and 0 deletions

View File

@ -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+";
};
}

View File

@ -8273,6 +8273,10 @@ let
inherit (xlibs) libX11;
};
tennix = import ../games/tennix {
inherit stdenv fetchurl SDL SDL_mixer SDL_image SDL_ttf;
};
/*tpm = import ../games/thePenguinMachine {
inherit stdenv fetchurl pil pygame SDL;
python24 = python;