2020-01-16 18:51:57 +00:00
|
|
|
{ fetchFromGitHub, stdenv, cmake, pkgconfig, python, alsaLib
|
2019-01-21 10:25:33 +00:00
|
|
|
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack
|
2016-09-03 16:41:13 +00:00
|
|
|
}:
|
2009-01-13 19:44:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-21 16:34:45 +00:00
|
|
|
pname = "teeworlds";
|
2020-01-15 23:22:34 +00:00
|
|
|
version = "0.7.4";
|
2009-01-13 19:44:11 +00:00
|
|
|
|
2019-01-21 10:25:33 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "teeworlds";
|
|
|
|
repo = "teeworlds";
|
2019-04-21 16:34:45 +00:00
|
|
|
rev = version;
|
2020-01-15 23:22:34 +00:00
|
|
|
sha256 = "1llrzcc9p8pswk58rj4qh4g67nlji8q2kw3hxh3qpli85jvkdmyx";
|
2019-06-02 19:09:24 +00:00
|
|
|
fetchSubmodules = true;
|
2009-01-13 19:44:11 +00:00
|
|
|
};
|
|
|
|
|
2018-10-16 06:13:22 +00:00
|
|
|
postPatch = ''
|
|
|
|
# set compiled-in DATA_DIR so resources can be found
|
|
|
|
substituteInPlace src/engine/shared/storage.cpp \
|
|
|
|
--replace '#define DATA_DIR "data"' \
|
|
|
|
'#define DATA_DIR "${placeholder "out"}/share/teeworlds/data"'
|
2009-01-13 19:44:11 +00:00
|
|
|
'';
|
|
|
|
|
2020-01-16 18:51:57 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2009-01-13 19:44:11 +00:00
|
|
|
|
2018-10-16 06:13:22 +00:00
|
|
|
buildInputs = [
|
2019-01-21 10:25:33 +00:00
|
|
|
python alsaLib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack
|
2018-10-16 06:13:22 +00:00
|
|
|
];
|
2009-01-13 19:44:11 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Retro multiplayer shooter game";
|
2009-01-13 19:44:11 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Teeworlds is a free online multiplayer game, available for all
|
|
|
|
major operating systems. Battle with up to 12 players in a
|
|
|
|
variety of game modes, including Team Deathmatch and Capture The
|
|
|
|
Flag. You can even design your own maps!
|
|
|
|
'';
|
|
|
|
|
2020-01-26 22:45:49 +00:00
|
|
|
homepage = "https://teeworlds.com/";
|
2009-01-13 19:44:11 +00:00
|
|
|
license = "BSD-style, see `license.txt'";
|
2011-11-06 10:11:31 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
2020-01-26 22:45:49 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-01-13 19:44:11 +00:00
|
|
|
};
|
|
|
|
}
|