mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Adding (quite blindly) some gnome packages to get gnucash built.
svn path=/nixpkgs/trunk/; revision=19758
This commit is contained in:
parent
41e5edb0b3
commit
936f161c00
23
pkgs/games/tennix/default.nix
Normal file
23
pkgs/games/tennix/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user