Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

+49
+24
pkgs/games/xpilot/bloodspilot-client.nix
···
··· 1 + {stdenv, fetchurl, libX11, SDL, mesa, expat, SDL_ttf, SDL_image}: 2 + let 3 + buildInputs = [ 4 + libX11 SDL SDL_ttf SDL_image mesa expat 5 + ]; 6 + in 7 + stdenv.mkDerivation rec { 8 + version = "1.5.0"; 9 + name = "bloodspilot-client-${version}"; 10 + inherit buildInputs; 11 + src = fetchurl { 12 + url = "mirror://sourceforge/project/bloodspilot/client-sdl/v${version}/bloodspilot-client-sdl-${version}.tar.gz"; 13 + sha256 = "1qwl95av5an2zl01m7saj6fyy49xpixga7gbn4lwbpgpqs1rbwxj"; 14 + }; 15 + NIX_LDFLAGS=["-lX11"]; 16 + meta = { 17 + inherit version; 18 + description = ''A multiplayer space combat game (client part)''; 19 + homepage = "http://bloodspilot.sf.net/"; 20 + license = stdenv.lib.licenses.gpl2Plus ; 21 + maintainers = [stdenv.lib.maintainers.raskin]; 22 + platforms = stdenv.lib.platforms.linux; 23 + }; 24 + }
+23
pkgs/games/xpilot/bloodspilot-server.nix
···
··· 1 + {stdenv, fetchurl, expat}: 2 + let 3 + buildInputs = [ 4 + expat 5 + ]; 6 + in 7 + stdenv.mkDerivation rec { 8 + version = "1.4.6"; 9 + name = "bloodspilot-xpilot-fxi-server-${version}"; 10 + inherit buildInputs; 11 + src = fetchurl { 12 + url = "mirror://sourceforge/project/bloodspilot/server/server%20v${version}/xpilot-${version}fxi.tar.gz"; 13 + sha256 = "0d7hnpshifq6gy9a0g6il6h1hgqqjyys36n8w84hr8d4nhg4d1ji"; 14 + }; 15 + meta = { 16 + inherit version; 17 + description = ''A multiplayer X11 space combat game (server part)''; 18 + homepage = "http://bloodspilot.sf.net/"; 19 + license = stdenv.lib.licenses.gpl2Plus ; 20 + maintainers = [stdenv.lib.maintainers.raskin]; 21 + platforms = stdenv.lib.platforms.linux; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 10442 xorg_sys_opengl = callPackage ../os-specific/linux/opengl/xorg-sys { }; 10443 10444 xpilot-ng = callPackage ../games/xpilot { }; 10445 10446 zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { }; 10447
··· 10442 xorg_sys_opengl = callPackage ../os-specific/linux/opengl/xorg-sys { }; 10443 10444 xpilot-ng = callPackage ../games/xpilot { }; 10445 + bloodspilot-server = callPackage ../games/xpilot/bloodspilot-server.nix {}; 10446 + bloodspilot-client = callPackage ../games/xpilot/bloodspilot-client.nix {}; 10447 10448 zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { }; 10449