about summary refs log tree commit diff
path: root/pkgs/games/ddnet
diff options
context:
space:
mode:
authorSeruju <sir.seruju@yandex.ru>2021-10-16 13:03:18 +0300
committerSeruju <sir.seruju@yandex.ru>2021-10-16 21:59:39 +0300
commit9889c07eb3c6919eb1f71fbbd871e5166aa71ec4 (patch)
tree9709e3437b37dfa6c362629b77476d0152e39a8a /pkgs/games/ddnet
parent982ffc81758167705f08f073ae1fe85002345bdd (diff)
downloadnixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.tar
nixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.tar.gz
nixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.tar.bz2
nixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.tar.lz
nixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.tar.xz
nixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.tar.zst
nixlib-9889c07eb3c6919eb1f71fbbd871e5166aa71ec4.zip
ddnet: init at 15.5.4
Diffstat (limited to 'pkgs/games/ddnet')
-rw-r--r--pkgs/games/ddnet/default.nix74
1 files changed, 74 insertions, 0 deletions
diff --git a/pkgs/games/ddnet/default.nix b/pkgs/games/ddnet/default.nix
new file mode 100644
index 000000000000..51a242a6cfdf
--- /dev/null
+++ b/pkgs/games/ddnet/default.nix
@@ -0,0 +1,74 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, ninja
+, pkg-config
+, curl
+, freetype
+, libGLU
+, libnotify
+, libogg
+, libX11
+, opusfile
+, pcre
+, python3
+, SDL2
+, sqlite
+, wavpack
+}:
+
+stdenv.mkDerivation rec {
+  pname = "ddnet";
+  version = "15.5.4";
+
+  src = fetchFromGitHub {
+    owner = "ddnet";
+    repo = pname;
+    rev = version;
+    sha256 = "sha256-vJMYPaLK2CK+nbojLstXgxqIUaf7jNynpklFgtIpvGM=";
+  };
+
+  nativeBuildInputs = [ cmake ninja pkg-config ];
+
+  buildInputs = [
+    curl
+    freetype
+    libGLU
+    libnotify
+    libogg
+    libX11
+    opusfile
+    pcre
+    python3
+    SDL2
+    sqlite
+    wavpack
+  ];
+
+  cmakeFlags = [
+    "-DCMAKE_BUILD_TYPE=Release"
+    "-DAUTOUPDATE=OFF"
+    "-GNinja"
+  ];
+
+  postPatch = ''
+    substituteInPlace src/engine/shared/storage.cpp \
+      --replace /usr/ $out/
+  '';
+
+  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.tw";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ sirseruju legendofmiracles ];
+    mainProgram = "DDNet";
+  };
+}