2016-05-07 00:43:24 +00:00
|
|
|
{ stdenv, lib, fetchurl, cmake, curl, glew, makeWrapper, mesa, SDL2,
|
2014-06-27 16:21:17 +00:00
|
|
|
SDL2_image, unzip, wget, zlib, withOpenal ? true, openal ? null }:
|
|
|
|
|
|
|
|
assert withOpenal -> openal != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "openspades-${version}";
|
|
|
|
version = "0.0.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/yvt/openspades/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "1aa848cck8qrp67ha9vrkzm3k24r2aiv1v4dxla6pi22rw98yxzm";
|
|
|
|
};
|
|
|
|
|
2016-03-01 13:31:33 +00:00
|
|
|
# https://github.com/yvt/openspades/issues/354
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Sources/Client/Client_Input.cpp --replace "isnan(" "std::isnan("
|
|
|
|
substituteInPlace Sources/Client/Corpse.cpp --replace "isnan(" "std::isnan("
|
2016-06-19 08:18:30 +00:00
|
|
|
substituteInPlace Sources/Draw/SWMapRenderer.cpp \
|
|
|
|
--replace "isnan(" "std::isnan(" --replace "isinf(" "std::isinf("
|
|
|
|
sed '1i#include <cmath>' -i Sources/Client/{Player,Client_Input,Corpse}.cpp \
|
|
|
|
-i Sources/Draw/SWMapRenderer.cpp
|
2016-06-23 10:07:57 +00:00
|
|
|
sed '1i#include <math.h>' -i Sources/Draw/SWFeatureLevel.h
|
2016-03-01 13:31:33 +00:00
|
|
|
'';
|
|
|
|
|
2016-08-25 21:11:27 +00:00
|
|
|
nativeBuildInputs =
|
2014-06-27 16:21:17 +00:00
|
|
|
[ cmake curl glew makeWrapper mesa SDL2 SDL2_image unzip wget zlib ]
|
2016-05-07 00:43:24 +00:00
|
|
|
++ lib.optional withOpenal openal;
|
2014-06-27 16:21:17 +00:00
|
|
|
|
2016-08-25 21:11:27 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DOPENSPADES_INSTALL_BINARY=bin"
|
|
|
|
"-DOPENSPADES_RESOURCES=NO"
|
|
|
|
];
|
2014-06-27 16:21:17 +00:00
|
|
|
|
2014-08-26 09:48:02 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
devPack = fetchurl {
|
|
|
|
url = "http://yvt.jp/files/programs/osppaks/DevPaks27.zip";
|
|
|
|
sha256 = "05y7wldg70v5ys41fm0c8kipyspn524z4pglwr3p8h0gfz9n52v6";
|
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
2016-05-07 08:58:17 +00:00
|
|
|
unzip -u -o $devPack -d Resources/DevPak
|
2014-08-26 09:48:02 +00:00
|
|
|
'';
|
|
|
|
|
2016-05-07 00:43:24 +00:00
|
|
|
NIX_CFLAGS_LINK = lib.optional withOpenal "-lopenal";
|
2014-06-27 16:21:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "A compatible client of Ace of Spades 0.75";
|
2014-06-27 16:21:17 +00:00
|
|
|
homepage = "https://github.com/yvt/openspades/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|