lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 20 lines 703 B view raw
1{ lib, stdenv, fetchurl, libX11, libSM, SDL, libGLU, libGL, expat, SDL_ttf 2, SDL_image, zlib, libXxf86misc }: 3stdenv.mkDerivation rec { 4 pname = "xpilot-ng"; 5 version = "4.7.3"; 6 src = fetchurl { 7 url = "mirror://sourceforge/xpilot/xpilot_ng/${pname}-${version}/${pname}-${version}.tar.gz"; 8 sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj"; 9 }; 10 buildInputs = [ 11 libX11 libSM SDL SDL_ttf SDL_image libGLU libGL expat zlib libXxf86misc 12 ]; 13 meta = with lib; { 14 description = "A multiplayer X11 space combat game"; 15 homepage = "http://xpilot.sf.net/"; 16 license = licenses.gpl2Plus; 17 maintainers = [ maintainers.raskin ]; 18 platforms = platforms.linux; 19 }; 20}