Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
877 B
Nix
51 lines
877 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
libX11,
|
|
libSM,
|
|
libXext,
|
|
SDL,
|
|
libGLU,
|
|
libGL,
|
|
expat,
|
|
SDL_ttf,
|
|
SDL_image,
|
|
zlib,
|
|
libXxf86misc,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "xpilot-ng";
|
|
version = "4.7.3";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xpilot/xpilot_ng/${pname}-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
|
|
};
|
|
buildInputs = [
|
|
libX11
|
|
libSM
|
|
libXext
|
|
SDL
|
|
SDL_ttf
|
|
SDL_image
|
|
libGLU
|
|
libGL
|
|
expat
|
|
zlib
|
|
libXxf86misc
|
|
];
|
|
|
|
patches = [
|
|
./xpilot-ng-gcc-14-fix.patch
|
|
./xpilot-ng-sdl-window-fix.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Multiplayer X11 space combat game";
|
|
homepage = "http://xpilot.sf.net/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|