2023-12-15 02:10:46 +01:00
|
|
|
{ fetchFromGitHub, fetchpatch, lib, stdenv, cmake, pkg-config, python3, alsa-lib
|
2020-03-24 13:37:12 +01:00
|
|
|
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack, icoutils
|
2020-03-29 20:50:14 +02:00
|
|
|
, nixosTests
|
2022-12-29 21:47:32 +01:00
|
|
|
, Cocoa
|
2023-11-20 05:46:07 +01:00
|
|
|
, buildClient ? true
|
2016-09-03 18:41:13 +02:00
|
|
|
}:
|
2009-01-13 20:44:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-21 18:34:45 +02:00
|
|
|
pname = "teeworlds";
|
2020-05-06 23:49:36 +02:00
|
|
|
version = "0.7.5";
|
2009-01-13 20:44:11 +01:00
|
|
|
|
2019-01-21 11:25:33 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "teeworlds";
|
|
|
|
repo = "teeworlds";
|
2019-04-21 18:34:45 +02:00
|
|
|
rev = version;
|
2020-05-06 23:49:36 +02:00
|
|
|
sha256 = "1l19ksmimg6b8zzjy0skyhh7z11ql7n5gvilkv7ay5x2b9ndbqwz";
|
2019-06-02 21:09:24 +02:00
|
|
|
fetchSubmodules = true;
|
2009-01-13 20:44:11 +01:00
|
|
|
};
|
|
|
|
|
2022-12-29 21:47:32 +01:00
|
|
|
patches = [
|
|
|
|
# Can't use fetchpatch or fetchpatch2 because of https://github.com/NixOS/nixpkgs/issues/32084
|
|
|
|
# Using fetchurl instead is also not a good idea, see https://github.com/NixOS/nixpkgs/issues/32084#issuecomment-727223713
|
|
|
|
./rename-VERSION-to-VERSION.txt.patch
|
2023-12-15 02:10:46 +01:00
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2021-43518.patch";
|
|
|
|
url = "https://salsa.debian.org/games-team/teeworlds/-/raw/a6c4b23c1ce73466e6d89bccbede70e61e8c9cba/debian/patches/CVE-2021-43518.patch";
|
|
|
|
hash = "sha256-2MmsucaaYjqLgMww1492gNmHmvBJm/NED+VV5pZDnBY=";
|
|
|
|
})
|
2022-12-29 21:47:32 +01:00
|
|
|
];
|
|
|
|
|
2018-10-16 08:13:22 +02: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"'
|
2022-12-29 21:47:32 +01:00
|
|
|
|
|
|
|
# Quote nonsense is a workaround for https://github.com/NixOS/nix/issues/661
|
|
|
|
substituteInPlace 'other/bundle/client/Info.plist.in' \
|
|
|
|
--replace ${"'"}''${TARGET_CLIENT}' 'teeworlds' \
|
|
|
|
--replace ${"'"}''${PROJECT_VERSION}' '${version}'
|
2023-11-27 23:08:58 +01:00
|
|
|
|
|
|
|
# Make sure some bundled dependencies are actually unbundled.
|
|
|
|
# This will fail compilation if one of these dependencies could not
|
|
|
|
# be found, instead of falling back to the bundled version.
|
|
|
|
rm -rf 'src/engine/external/wavpack/'
|
|
|
|
rm -rf 'src/engine/external/zlib/'
|
|
|
|
# md5, pnglite and json-parser (https://github.com/udp/json-parser)
|
|
|
|
# don't seem to be packaged in Nixpkgs, so don't unbundle them.
|
2009-01-13 20:44:11 +01:00
|
|
|
'';
|
|
|
|
|
2022-12-29 21:47:32 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
2023-11-20 05:46:07 +01:00
|
|
|
] ++ lib.optionals (buildClient && stdenv.isLinux) [
|
2022-12-29 21:47:32 +01:00
|
|
|
icoutils
|
|
|
|
];
|
2009-01-13 20:44:11 +01:00
|
|
|
|
2018-10-16 08:13:22 +02:00
|
|
|
buildInputs = [
|
2023-11-20 05:46:07 +01:00
|
|
|
python3 lua5_3 zlib
|
2023-11-27 23:08:58 +01:00
|
|
|
wavpack
|
2023-11-27 23:22:49 +01:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
Cocoa
|
2023-11-20 05:46:07 +01:00
|
|
|
] ++ lib.optionals buildClient ([
|
|
|
|
SDL2
|
|
|
|
freetype
|
2022-12-29 21:47:32 +01:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2023-11-27 23:22:49 +01:00
|
|
|
libGLU
|
2022-12-29 21:47:32 +01:00
|
|
|
alsa-lib
|
|
|
|
libX11
|
2023-11-20 05:46:07 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCLIENT=${if buildClient then "ON" else "OFF"}"
|
2018-10-16 08:13:22 +02:00
|
|
|
];
|
2009-01-13 20:44:11 +01:00
|
|
|
|
2023-11-20 05:46:07 +01:00
|
|
|
postInstall = lib.optionalString buildClient (lib.optionalString stdenv.isLinux ''
|
2020-03-24 13:37:12 +01:00
|
|
|
# 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
|
2022-12-29 21:47:32 +01:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
mkdir -p "$out/Applications/teeworlds.app/Contents/MacOS"
|
|
|
|
mkdir -p "$out/Applications/teeworlds.app/Contents/Resources"
|
|
|
|
|
|
|
|
cp '../other/icons/teeworlds.icns' "$out/Applications/teeworlds.app/Contents/Resources/"
|
|
|
|
cp '../other/bundle/client/Info.plist.in' "$out/Applications/teeworlds.app/Contents/Info.plist"
|
|
|
|
cp '../other/bundle/client/PkgInfo' "$out/Applications/teeworlds.app/Contents/"
|
|
|
|
ln -s "$out/bin/teeworlds" "$out/Applications/teeworlds.app/Contents/MacOS/"
|
|
|
|
ln -s "$out/share/teeworlds/data" "$out/Applications/teeworlds.app/Contents/Resources/data"
|
2023-11-20 05:46:07 +01:00
|
|
|
'');
|
2020-03-24 13:37:12 +01:00
|
|
|
|
2020-03-29 20:50:14 +02:00
|
|
|
passthru.tests.teeworlds = nixosTests.teeworlds;
|
|
|
|
|
2009-01-13 20:44:11 +01:00
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Retro multiplayer shooter game";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "teeworlds_srv";
|
2009-01-13 20:44:11 +01: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 23:45:49 +01:00
|
|
|
homepage = "https://teeworlds.com/";
|
2023-11-27 22:08:42 +01:00
|
|
|
license = with lib.licenses; [
|
|
|
|
# See https://github.com/teeworlds/teeworlds/blob/master/license.txt
|
|
|
|
lib.licenses.zlib # Main license
|
|
|
|
cc-by-sa-30 # All content under 'datasrc' except the fonts
|
|
|
|
ofl # datasrc/fonts/SourceHanSans.ttc
|
|
|
|
free # datasrc/fonts/DejaVuSans.ttf
|
|
|
|
bsd2 # src/engine/external/json-parser/
|
|
|
|
bsd3 # src/engine/external/wavpack
|
|
|
|
# zlib src/engine/external/md5/
|
|
|
|
# zlib src/engine/external/pnglite/
|
|
|
|
# zlib src/engine/external/zlib/
|
|
|
|
];
|
2023-01-02 22:54:46 +01:00
|
|
|
maintainers = with lib.maintainers; [ astsmtl Luflosi ];
|
2022-12-29 21:47:32 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2009-01-13 20:44:11 +01:00
|
|
|
};
|
|
|
|
}
|