2021-10-16 12:03:18 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2023-01-26 15:47:32 +01:00
|
|
|
, fetchpatch
|
2021-10-16 12:03:18 +02:00
|
|
|
, cmake
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
2023-01-26 10:08:59 +01:00
|
|
|
, rustPlatform
|
2021-10-16 12:03:18 +02:00
|
|
|
, curl
|
|
|
|
, freetype
|
|
|
|
, libGLU
|
|
|
|
, libnotify
|
|
|
|
, libogg
|
|
|
|
, libX11
|
|
|
|
, opusfile
|
|
|
|
, pcre
|
|
|
|
, python3
|
|
|
|
, SDL2
|
|
|
|
, sqlite
|
|
|
|
, wavpack
|
2022-03-30 09:57:03 +02:00
|
|
|
, ffmpeg
|
|
|
|
, x264
|
|
|
|
, vulkan-headers
|
|
|
|
, vulkan-loader
|
|
|
|
, glslang
|
|
|
|
, spirv-tools
|
2023-01-26 10:08:59 +01:00
|
|
|
, gtest
|
2022-09-05 12:10:50 +02:00
|
|
|
, Carbon
|
|
|
|
, Cocoa
|
|
|
|
, OpenGL
|
|
|
|
, Security
|
2021-10-16 12:03:18 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ddnet";
|
2023-04-03 18:53:43 +02:00
|
|
|
version = "16.9";
|
2021-10-16 12:03:18 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ddnet";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-04-03 18:53:43 +02:00
|
|
|
hash = "sha256-DOP2v82346YQtL55Ix0gn9cTpvbO1ooeCIGRpgEMFpA=";
|
2021-10-16 12:03:18 +02:00
|
|
|
};
|
|
|
|
|
2023-01-26 10:08:59 +01:00
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
inherit src;
|
2023-04-03 18:53:43 +02:00
|
|
|
hash = "sha256-xTB8wg4PIdg7MB3545zN83/41fUsqFE2Sk5aTXrGhps=";
|
2023-01-26 10:08:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
rustPlatform.rust.rustc
|
|
|
|
rustPlatform.rust.cargo
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
gtest
|
|
|
|
];
|
2021-10-16 12:03:18 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
curl
|
|
|
|
freetype
|
|
|
|
libGLU
|
|
|
|
libnotify
|
|
|
|
libogg
|
|
|
|
libX11
|
|
|
|
opusfile
|
|
|
|
pcre
|
|
|
|
python3
|
|
|
|
SDL2
|
|
|
|
sqlite
|
|
|
|
wavpack
|
2022-03-30 09:57:03 +02:00
|
|
|
ffmpeg
|
|
|
|
x264
|
|
|
|
vulkan-loader
|
|
|
|
vulkan-headers
|
|
|
|
glslang
|
|
|
|
spirv-tools
|
2022-09-05 12:10:50 +02:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa OpenGL Security ];
|
2021-10-16 12:03:18 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/engine/shared/storage.cpp \
|
|
|
|
--replace /usr/ $out/
|
|
|
|
'';
|
|
|
|
|
2023-01-26 10:08:59 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DAUTOUPDATE=OFF"
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "run_tests";
|
|
|
|
|
2021-10-16 12:03:18 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A Teeworlds modification with a unique cooperative gameplay.";
|
|
|
|
longDescription = ''
|
|
|
|
DDraceNetwork (DDNet) is an actively maintained version of DDRace,
|
|
|
|
a Teeworlds modification with a unique cooperative gameplay.
|
|
|
|
Help each other play through custom maps with up to 64 players,
|
|
|
|
compete against the best in international tournaments,
|
|
|
|
design your own maps, or run your own server.
|
|
|
|
'';
|
2022-10-07 18:15:16 +02:00
|
|
|
homepage = "https://ddnet.org";
|
2021-10-16 12:03:18 +02:00
|
|
|
license = licenses.asl20;
|
2023-01-26 10:08:59 +01:00
|
|
|
maintainers = with maintainers; [ sirseruju lom ncfavier ];
|
2021-10-16 12:03:18 +02:00
|
|
|
mainProgram = "DDNet";
|
|
|
|
};
|
|
|
|
}
|