nixpkgs/pkgs/games/ddnet/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

112 lines
2.0 KiB
Nix
Raw Normal View History

2021-10-16 10:03:18 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
2021-10-16 10:03:18 +00:00
, cmake
, ninja
, pkg-config
, rustPlatform
2021-10-16 10:03:18 +00:00
, curl
, freetype
, libGLU
, libnotify
, libogg
, libX11
, opusfile
, pcre
, python3
, SDL2
, sqlite
, wavpack
2022-03-30 07:57:03 +00:00
, ffmpeg
, x264
, vulkan-headers
, vulkan-loader
, glslang
, spirv-tools
, gtest
2022-09-05 10:10:50 +00:00
, Carbon
, Cocoa
, OpenGL
, Security
2021-10-16 10:03:18 +00:00
}:
stdenv.mkDerivation rec {
pname = "ddnet";
version = "16.9";
2021-10-16 10:03:18 +00:00
src = fetchFromGitHub {
owner = "ddnet";
repo = pname;
rev = version;
hash = "sha256-DOP2v82346YQtL55Ix0gn9cTpvbO1ooeCIGRpgEMFpA=";
2021-10-16 10:03:18 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
name = "${pname}-${version}";
inherit src;
hash = "sha256-xTB8wg4PIdg7MB3545zN83/41fUsqFE2Sk5aTXrGhps=";
};
nativeBuildInputs = [
cmake
ninja
pkg-config
rustPlatform.rust.rustc
rustPlatform.rust.cargo
rustPlatform.cargoSetupHook
];
nativeCheckInputs = [
gtest
];
2021-10-16 10:03:18 +00:00
buildInputs = [
curl
freetype
libGLU
libnotify
libogg
libX11
opusfile
pcre
python3
SDL2
sqlite
wavpack
2022-03-30 07:57:03 +00:00
ffmpeg
x264
vulkan-loader
vulkan-headers
glslang
spirv-tools
2022-09-05 10:10:50 +00:00
] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa OpenGL Security ];
2021-10-16 10:03:18 +00:00
postPatch = ''
substituteInPlace src/engine/shared/storage.cpp \
--replace /usr/ $out/
'';
cmakeFlags = [
"-DAUTOUPDATE=OFF"
];
doCheck = true;
checkTarget = "run_tests";
2021-10-16 10:03:18 +00: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.
'';
homepage = "https://ddnet.org";
2021-10-16 10:03:18 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ sirseruju lom ncfavier ];
2021-10-16 10:03:18 +00:00
mainProgram = "DDNet";
};
}