summary refs log blame commit diff
path: root/pkgs/games/tennix/default.nix
blob: f81ddb7edf953752ec2e78f248e6df42e10c5138 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                               

                         

                   
                  
                                                                          
                                                                    

    


                                                                   

                   
                           


                                      
                    
                                            



                                                   

    
{lib, stdenv, fetchurl, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_net, python } :

stdenv.mkDerivation rec {
  pname = "tennix";
  version = "1.1";
  src = fetchurl {
    url = "https://icculus.org/tennix/downloads/tennix-${version}.tar.gz";
    sha256 = "0np5kw1y7i0z0dsqx4r2nvmq86qj8hv3mmgavm3hxraqnds5z8cm";
  };

  buildInputs = [ python SDL SDL_mixer SDL_image SDL_ttf SDL_net ];

  patches = [ ./fix_FTBFS.patch ];

  preConfigure = ''
    makeFlags="PREFIX=$out"
    installFlags="PREFIX=$out install"
  '';

  meta = with lib; {
    homepage = "http://icculus.org/tennix/";
    description = "Classic Championship Tour 2011";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub ];
  };
}