2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, expat }:
|
2016-02-09 00:45:13 +00:00
|
|
|
|
2015-09-10 23:25:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "bloodspilot-xpilot-fxi-server";
|
2016-02-09 00:45:13 +00:00
|
|
|
version = "1.4.6";
|
|
|
|
|
2015-09-10 23:25:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/bloodspilot/server/server%20v${version}/xpilot-${version}fxi.tar.gz";
|
|
|
|
sha256 = "0d7hnpshifq6gy9a0g6il6h1hgqqjyys36n8w84hr8d4nhg4d1ji";
|
|
|
|
};
|
2016-02-09 00:45:13 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
expat
|
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./server-gcc5.patch
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-09 00:45:13 +00:00
|
|
|
description = "A multiplayer X11 space combat game (server part)";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://bloodspilot.sf.net/";
|
2016-02-09 00:45:13 +00:00
|
|
|
license = licenses.gpl2Plus ;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2015-09-10 23:25:52 +00:00
|
|
|
};
|
|
|
|
}
|