pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / xpilot / bloodspilot-server.nix
blob509da8eabbe01bb9df3fa7e962bca331bc1d7df3
1 { lib, stdenv, fetchurl, expat }:
3 stdenv.mkDerivation rec {
4   pname = "bloodspilot-xpilot-fxi-server";
5   version = "1.4.6";
7   src = fetchurl {
8     url = "mirror://sourceforge/project/bloodspilot/server/server%20v${version}/xpilot-${version}fxi.tar.gz";
9     sha256 = "0d7hnpshifq6gy9a0g6il6h1hgqqjyys36n8w84hr8d4nhg4d1ji";
10   };
12   buildInputs = [
13     expat
14   ];
16   patches = [
17     ./server-gcc5.patch
18   ];
20   meta = with lib; {
21     description = "Multiplayer X11 space combat game (server part)";
22     mainProgram = "xpilots";
23     homepage = "http://bloodspilot.sf.net/";
24     license = licenses.gpl2Plus ;
25     maintainers = [ maintainers.raskin ];
26     platforms = platforms.linux;
27   };