about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-12-08 12:57:31 +0100
committerGitHub <noreply@github.com>2022-12-08 12:57:31 +0100
commit3fbe53f2b3c7e9cca73e723d6734291141c0d034 (patch)
treec8a44416395cd614bef4db6c505642374a3b698b /pkgs/games
parentd44e752fba926735c613ee5acef6efec3894e013 (diff)
parent904280a5147e114a0cd17c7a9f8711f99b30330f (diff)
Merge pull request #204318 from wegank/ogre-bump
ogre: 1.12.1 -> 13.5.3
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/opendungeons/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/games/opendungeons/default.nix b/pkgs/games/opendungeons/default.nix
index 9afcbd898785e..61f8aad304c8b 100644
--- a/pkgs/games/opendungeons/default.nix
+++ b/pkgs/games/opendungeons/default.nix
@@ -16,6 +16,11 @@ stdenv.mkDerivation rec {
     ./fix_link_date_time.patch
   ];
 
+  # source/utils/StackTraceUnix.cpp:122:2: error: #error Unsupported architecture.
+  postPatch = lib.optionalString (!stdenv.isx86_64) ''
+    cp source/utils/StackTrace{Stub,Unix}.cpp
+  '';
+
   nativeBuildInputs = [ cmake pkg-config ];
   buildInputs = [ ogre cegui boost sfml openal ois ];