bloodpilot-client: fix build
This commit is contained in:
parent
7783862700
commit
4197bfee34
@ -1,20 +1,21 @@
|
|||||||
{stdenv, fetchurl, libX11, SDL, mesa, expat, SDL_ttf, SDL_image}:
|
{ stdenv, fetchurl, libX11, SDL, mesa, expat, zlib, SDL_ttf, SDL_image }:
|
||||||
let
|
|
||||||
buildInputs = [
|
|
||||||
libX11 SDL SDL_ttf SDL_image mesa expat
|
|
||||||
];
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.5.0";
|
version = "1.5.0";
|
||||||
name = "bloodspilot-client-${version}";
|
name = "bloodspilot-client-${version}";
|
||||||
inherit buildInputs;
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/bloodspilot/client-sdl/v${version}/bloodspilot-client-sdl-${version}.tar.gz";
|
url = "mirror://sourceforge/project/bloodspilot/client-sdl/v${version}/bloodspilot-client-sdl-${version}.tar.gz";
|
||||||
sha256 = "1qwl95av5an2zl01m7saj6fyy49xpixga7gbn4lwbpgpqs1rbwxj";
|
sha256 = "1qwl95av5an2zl01m7saj6fyy49xpixga7gbn4lwbpgpqs1rbwxj";
|
||||||
};
|
};
|
||||||
NIX_LDFLAGS=["-lX11"];
|
|
||||||
|
buildInputs = [
|
||||||
|
libX11 SDL SDL_ttf SDL_image mesa expat zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
NIX_LDFLAGS = [ "-lX11" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit version;
|
|
||||||
description = ''A multiplayer space combat game (client part)'';
|
description = ''A multiplayer space combat game (client part)'';
|
||||||
homepage = "http://bloodspilot.sf.net/";
|
homepage = "http://bloodspilot.sf.net/";
|
||||||
license = stdenv.lib.licenses.gpl2Plus ;
|
license = stdenv.lib.licenses.gpl2Plus ;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user