summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-09-03 19:36:40 +0100
committerGitHub <noreply@github.com>2020-09-03 19:36:40 +0100
commit96ea00a5ce84e8b4e598970d06e6a160654d2a36 (patch)
treed0d83b965ba2f45f2c43c415750151a5fbf83955 /pkgs
parent94c2122d38aefec7aaf707757970e7a5a471b907 (diff)
parentbaf51e4600bf14237c376ed3223174d9186af5af (diff)
Merge pull request #97031 from timokau/hedgewars-aarch64
hedgewars: fix build on aarch64
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/hedgewars/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/games/hedgewars/default.nix b/pkgs/games/hedgewars/default.nix
index adc6506c6157..228c6c364102 100644
--- a/pkgs/games/hedgewars/default.nix
+++ b/pkgs/games/hedgewars/default.nix
@@ -2,6 +2,7 @@
, lib, fetchurl, cmake, pkgconfig, lua5_1, SDL2, SDL2_mixer
, zlib, libpng, libGL, libGLU, physfs
, qtbase, qttools
+, llvm
, withServer ? true
}:
@@ -27,6 +28,7 @@ mkDerivation rec {
buildInputs = [
SDL2_ttf SDL2_net SDL2 SDL2_mixer SDL2_image
fpc lua5_1
+ llvm # hard-requirement on aarch64, for some reason not strictly necessary on x86-64
ffmpeg_3 freeglut physfs
qtbase
] ++ lib.optional withServer ghc;