mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Blood's Pilot (another XPilot fork): init at 1.4.6 server/1.5.0 client
This commit is contained in:
parent
8b29707592
commit
b1acfea179
24
pkgs/games/xpilot/bloodspilot-client.nix
Normal file
24
pkgs/games/xpilot/bloodspilot-client.nix
Normal 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;
|
||||
};
|
||||
}
|
23
pkgs/games/xpilot/bloodspilot-server.nix
Normal file
23
pkgs/games/xpilot/bloodspilot-server.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user