pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / xpilot / default.nix
blob009ba7a7a7240d28c62c8baf4af090519c182712
1 { lib, stdenv, fetchurl, libX11, libSM, SDL, libGLU, libGL, expat, SDL_ttf
2 , SDL_image, zlib, libXxf86misc }:
3 stdenv.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 = "Multiplayer X11 space combat game";
15     homepage = "http://xpilot.sf.net/";
16     license = licenses.gpl2Plus;
17     maintainers = [ maintainers.raskin ];
18     platforms = platforms.linux;
19   };