nixpkgs/pkgs/games/xpilot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
703 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libX11, libSM, SDL, libGLU, libGL, expat, SDL_ttf
, SDL_image, zlib, libXxf86misc }:
2015-09-04 20:45:04 +00:00
stdenv.mkDerivation rec {
pname = "xpilot-ng";
version = "4.7.3";
2015-09-04 20:45:04 +00:00
src = fetchurl {
url = "mirror://sourceforge/xpilot/xpilot_ng/${pname}-${version}/${pname}-${version}.tar.gz";
2015-09-04 20:45:04 +00:00
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
};
buildInputs = [
2019-11-10 16:44:34 +00:00
libX11 libSM SDL SDL_ttf SDL_image libGLU libGL expat zlib libXxf86misc
];
meta = with lib; {
description = "A multiplayer X11 space combat game";
homepage = "http://xpilot.sf.net/";
license = licenses.gpl2Plus;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
2015-09-04 20:45:04 +00:00
};
}