Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / xpilot / bloodspilot-server.nix
bloba860c4e1d5ffbd01072a9669c9f75b823dfcc37a
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 = "A multiplayer X11 space combat game (server part)";
22     homepage = "http://bloodspilot.sf.net/";
23     license = licenses.gpl2Plus ;
24     maintainers = [ maintainers.raskin ];
25     platforms = platforms.linux;
26   };