2021-01-17 05:49:22 +00:00
|
|
|
{ fetchFromGitHub, lib, stdenv, cmake, pkg-config, python3, alsaLib
|
2020-03-24 12:37:12 +00:00
|
|
|
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack, icoutils
|
2020-03-29 19:50:14 +01:00
|
|
|
, nixosTests
|
2016-09-03 17:41:13 +01:00
|
|
|
}:
|
2009-01-13 19:44:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-21 17:34:45 +01:00
|
|
|
pname = "teeworlds";
|
2020-05-06 22:49:36 +01:00
|
|
|
version = "0.7.5";
|
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 17:34:45 +01:00
|
|
|
rev = version;
|
2020-05-06 22:49:36 +01:00
|
|
|
sha256 = "1l19ksmimg6b8zzjy0skyhh7z11ql7n5gvilkv7ay5x2b9ndbqwz";
|
2019-06-02 20:09:24 +01:00
|
|
|
fetchSubmodules = true;
|
2009-01-13 19:44:11 +00:00
|
|
|
};
|
|
|
|
|
2018-10-16 07:13:22 +01: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
|
|
|
'';
|
|
|
|
|
2021-01-17 05:49:22 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config icoutils ];
|
2009-01-13 19:44:11 +00:00
|
|
|
|
2018-10-16 07:13:22 +01:00
|
|
|
buildInputs = [
|
2020-03-24 12:36:29 +00:00
|
|
|
python3 alsaLib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack
|
2018-10-16 07:13:22 +01:00
|
|
|
];
|
2009-01-13 19:44:11 +00:00
|
|
|
|
2020-03-24 12:37:12 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Convert and install desktop icon
|
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
icotool --extract --index 1 --output $out/share/pixmaps/teeworlds.png $src/other/icons/teeworlds.ico
|
|
|
|
|
|
|
|
# Install menu item
|
|
|
|
install -D $src/other/teeworlds.desktop $out/share/applications/teeworlds.desktop
|
|
|
|
'';
|
|
|
|
|
2020-03-29 19:50:14 +01:00
|
|
|
passthru.tests.teeworlds = nixosTests.teeworlds;
|
|
|
|
|
2009-01-13 19:44:11 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01: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'";
|
2021-01-15 04:31:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ astsmtl ];
|
|
|
|
platforms = lib.platforms.linux;
|
2009-01-13 19:44:11 +00:00
|
|
|
};
|
|
|
|
}
|