2019-03-08 21:25:47 +00:00
|
|
|
{ stdenv, fetchurl, libX11, libSM, SDL, libGLU_combined, expat, SDL_ttf
|
|
|
|
, SDL_image, zlib, libXxf86misc }:
|
2015-09-04 21:45:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xpilot-ng";
|
2019-03-08 21:25:47 +00:00
|
|
|
version = "4.7.3";
|
2015-09-04 21:45:04 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/xpilot/xpilot_ng/${pname}-${version}/${pname}-${version}.tar.gz";
|
2015-09-04 21:45:04 +01:00
|
|
|
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
|
|
|
|
};
|
2019-03-08 21:25:47 +00:00
|
|
|
buildInputs = [
|
|
|
|
libX11 libSM SDL SDL_ttf SDL_image libGLU_combined expat zlib libXxf86misc
|
|
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A multiplayer X11 space combat game";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://xpilot.sf.net/;
|
2019-03-08 21:25:47 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2015-09-04 21:45:04 +01:00
|
|
|
};
|
|
|
|
}
|