Blood's Pilot (another XPilot fork): init at 1.4.6 server/1.5.0 client

This commit is contained in:
Michael Raskin 2015-09-11 02:25:52 +03:00
parent 8b29707592
commit b1acfea179
3 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{stdenv, fetchurl, libX11, SDL, mesa, expat, SDL_ttf, SDL_image}:
let
buildInputs = [
libX11 SDL SDL_ttf SDL_image mesa expat
];
in
stdenv.mkDerivation rec {
version = "1.5.0";
name = "bloodspilot-client-${version}";
inherit buildInputs;
src = fetchurl {
url = "mirror://sourceforge/project/bloodspilot/client-sdl/v${version}/bloodspilot-client-sdl-${version}.tar.gz";
sha256 = "1qwl95av5an2zl01m7saj6fyy49xpixga7gbn4lwbpgpqs1rbwxj";
};
NIX_LDFLAGS=["-lX11"];
meta = {
inherit version;
description = ''A multiplayer space combat game (client part)'';
homepage = "http://bloodspilot.sf.net/";
license = stdenv.lib.licenses.gpl2Plus ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, expat}:
let
buildInputs = [
expat
];
in
stdenv.mkDerivation rec {
version = "1.4.6";
name = "bloodspilot-xpilot-fxi-server-${version}";
inherit buildInputs;
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;
};
}

View file

@ -10442,6 +10442,8 @@ let
xorg_sys_opengl = callPackage ../os-specific/linux/opengl/xorg-sys { };
xpilot-ng = callPackage ../games/xpilot { };
bloodspilot-server = callPackage ../games/xpilot/bloodspilot-server.nix {};
bloodspilot-client = callPackage ../games/xpilot/bloodspilot-client.nix {};
zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { };