1 { lib, stdenv, fetchgit, which, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_net, python3 } :
3 stdenv.mkDerivation rec {
8 url = "git://repo.or.cz/tennix.git";
9 rev = "refs/tags/tennix-${version}";
10 hash = "sha256-U5+S1jEeg+7gdM1++dln6ePTqxZu2Zt0oUrH3DIlkgk=";
13 nativeBuildInputs = [ which ];
15 buildInputs = [ python3 SDL SDL_mixer SDL_image SDL_ttf SDL_net ];
18 ./configure --prefix $out
22 homepage = "http://icculus.org/tennix/";
23 description = "Classic Championship Tour 2011";
24 mainProgram = "tennix";
25 license = licenses.gpl2Plus;
26 platforms = platforms.linux;
27 maintainers = with maintainers; [ pSub ];