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

                                                                       
                         
                                
                    



                                                                         




                                                                              
                                     


                                         

    
{ stdenv, fetchurl, libX11, libSM, SDL, libGLU_combined, expat, SDL_ttf
, SDL_image, zlib, libXxf86misc }:
stdenv.mkDerivation rec {
  name = "xpilot-ng-${version}";
  version = "4.7.3";
  src = fetchurl {
    url = "mirror://sourceforge/xpilot/xpilot_ng/${name}/${name}.tar.gz";
    sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
  };
  buildInputs = [
    libX11 libSM SDL SDL_ttf SDL_image libGLU_combined expat zlib libXxf86misc
  ];
  meta = with stdenv.lib; {
    description = "A multiplayer X11 space combat game";
    homepage = http://xpilot.sf.net/;
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.raskin ];
    platforms = platforms.linux;
  };
}