summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorPaul S <pshirshov@gmail.com>2024-04-08 13:48:48 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-08 16:28:10 +0200
commit348bbf9015562ad668226c12a382dbcb4f2bfcfb (patch)
treed3689e8142ee1e6af4b5cc41b2eb0a8e215f9194 /pkgs/games
parentff0dbd94265ac470dda06a657d5fe49de93b4599 (diff)
fheroes2: set platforms.unix instead of platforms.linux
fixes #302354
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/fheroes2/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/games/fheroes2/default.nix b/pkgs/games/fheroes2/default.nix
index d51cb21750fd..bc96eb5cfcc3 100644
--- a/pkgs/games/fheroes2/default.nix
+++ b/pkgs/games/fheroes2/default.nix
@@ -1,5 +1,6 @@
{ stdenv, lib, fetchFromGitHub, imagemagick
, gettext, glibcLocalesUtf8, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, zlib
+, libiconv
, gitUpdater
}:
@@ -17,7 +18,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ imagemagick ];
- buildInputs = [ gettext glibcLocalesUtf8 libpng SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib ];
+ buildInputs = [ gettext glibcLocalesUtf8 libpng SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib ]
+ ++ lib.optionals stdenv.isDarwin [ libiconv ];
makeFlags = [
"FHEROES2_STRICT_COMPILATION=1"
@@ -67,6 +69,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl2Plus;
maintainers = [ maintainers.karolchmist ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}