2021-01-15 04:31:39 +00:00
|
|
|
{ lib, stdenv, fetchurl, libX11, SDL, libGLU, libGL, expat, zlib, SDL_ttf, SDL_image }:
|
2016-08-22 05:43:22 +01:00
|
|
|
|
2015-09-11 00:25:52 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.5.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bloodspilot-client";
|
2016-08-22 05:43:22 +01:00
|
|
|
|
2015-09-11 00:25:52 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/bloodspilot/client-sdl/v${version}/bloodspilot-client-sdl-${version}.tar.gz";
|
|
|
|
sha256 = "1qwl95av5an2zl01m7saj6fyy49xpixga7gbn4lwbpgpqs1rbwxj";
|
|
|
|
};
|
2016-08-22 05:43:22 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2019-11-10 16:44:34 +00:00
|
|
|
libX11 SDL SDL_ttf SDL_image libGLU libGL expat zlib
|
2016-08-22 05:43:22 +01:00
|
|
|
];
|
|
|
|
|
2019-10-30 01:29:30 +00:00
|
|
|
NIX_LDFLAGS = "-lX11";
|
2016-08-22 05:43:22 +01:00
|
|
|
|
2015-09-11 00:25:52 +01:00
|
|
|
meta = {
|
2021-01-24 09:19:10 +00:00
|
|
|
description = "A multiplayer space combat game (client part)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://bloodspilot.sf.net/";
|
2021-01-15 04:31:39 +00:00
|
|
|
license = lib.licenses.gpl2Plus ;
|
|
|
|
maintainers = [lib.maintainers.raskin];
|
|
|
|
platforms = lib.platforms.linux;
|
2015-09-11 00:25:52 +01:00
|
|
|
};
|
|
|
|
}
|