lol
1{ stdenv, fetchurl, expat }:
2
3stdenv.mkDerivation rec {
4 name = "bloodspilot-xpilot-fxi-server-${version}";
5 version = "1.4.6";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/project/bloodspilot/server/server%20v${version}/xpilot-${version}fxi.tar.gz";
9 sha256 = "0d7hnpshifq6gy9a0g6il6h1hgqqjyys36n8w84hr8d4nhg4d1ji";
10 };
11
12 buildInputs = [
13 expat
14 ];
15
16 patches = [
17 ./server-gcc5.patch
18 ];
19
20 meta = with stdenv.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 };
27}