nixpkgs/pkgs/games/xpilot/bloodspilot-server.nix

28 lines
661 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, expat }:
2016-02-09 00:45:13 +00:00
stdenv.mkDerivation rec {
pname = "bloodspilot-xpilot-fxi-server";
2016-02-09 00:45:13 +00:00
version = "1.4.6";
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
];
meta = with lib; {
2016-02-09 00:45:13 +00:00
description = "A multiplayer X11 space combat game (server part)";
homepage = "http://bloodspilot.sf.net/";
2016-02-09 00:45:13 +00:00
license = licenses.gpl2Plus ;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
}