bloodspilot-server: fix on gcc5

This commit is contained in:
Robin Gloster
2016-02-09 00:45:13 +00:00
parent 09a3349a79
commit 2ff1275292
2 changed files with 84 additions and 15 deletions
+19 -15
View File
@@ -1,23 +1,27 @@
{stdenv, fetchurl, expat}:
let
buildInputs = [
expat
];
in
{ stdenv, fetchurl, expat }:
stdenv.mkDerivation rec {
version = "1.4.6";
name = "bloodspilot-xpilot-fxi-server-${version}";
inherit buildInputs;
version = "1.4.6";
src = fetchurl {
url = "mirror://sourceforge/project/bloodspilot/server/server%20v${version}/xpilot-${version}fxi.tar.gz";
sha256 = "0d7hnpshifq6gy9a0g6il6h1hgqqjyys36n8w84hr8d4nhg4d1ji";
};
meta = {
inherit version;
description = ''A multiplayer X11 space combat game (server part)'';
homepage = "http://bloodspilot.sf.net/";
license = stdenv.lib.licenses.gpl2Plus ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
buildInputs = [
expat
];
patches = [
./server-gcc5.patch
];
meta = with stdenv.lib; {
description = "A multiplayer X11 space combat game (server part)";
homepage = http://bloodspilot.sf.net/;
license = licenses.gpl2Plus ;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
}