xpilot-ng: Fix build and cleanup (#57088)
This commit is contained in:
parent
eb8abb9ade
commit
72a8952e84
@ -1,23 +1,20 @@
|
|||||||
{stdenv, fetchurl, libX11, libSM, SDL, libGLU_combined, expat, SDL_ttf, SDL_image, zlib}:
|
{ stdenv, fetchurl, libX11, libSM, SDL, libGLU_combined, expat, SDL_ttf
|
||||||
let
|
, SDL_image, zlib, libXxf86misc }:
|
||||||
buildInputs = [
|
|
||||||
libX11 libSM SDL SDL_ttf SDL_image libGLU_combined expat zlib
|
|
||||||
];
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "4.7.3";
|
|
||||||
name = "xpilot-ng-${version}";
|
name = "xpilot-ng-${version}";
|
||||||
inherit buildInputs;
|
version = "4.7.3";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/xpilot/xpilot_ng/${name}/${name}.tar.gz";
|
url = "mirror://sourceforge/xpilot/xpilot_ng/${name}/${name}.tar.gz";
|
||||||
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
|
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
|
||||||
};
|
};
|
||||||
meta = {
|
buildInputs = [
|
||||||
inherit version;
|
libX11 libSM SDL SDL_ttf SDL_image libGLU_combined expat zlib libXxf86misc
|
||||||
description = ''A multiplayer X11 space combat game'';
|
];
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A multiplayer X11 space combat game";
|
||||||
homepage = http://xpilot.sf.net/;
|
homepage = http://xpilot.sf.net/;
|
||||||
license = stdenv.lib.licenses.gpl2Plus ;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user