2023-04-03 12:28:57 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, imagemagick
|
2022-08-12 23:33:14 +02:00
|
|
|
, gettext, glibcLocalesUtf8, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, zlib
|
2024-04-08 14:48:48 +02:00
|
|
|
, libiconv
|
2021-12-31 23:35:32 +01:00
|
|
|
|
2022-10-27 20:57:34 +02:00
|
|
|
, gitUpdater
|
2021-06-04 13:29:50 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fheroes2";
|
2024-09-17 07:39:16 +02:00
|
|
|
version = "1.1.2";
|
2021-06-04 13:29:50 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihhub";
|
|
|
|
repo = "fheroes2";
|
|
|
|
rev = version;
|
2024-09-17 07:39:16 +02:00
|
|
|
hash = "sha256-FSfA2gjJZWAbl2nTJwkAhWcJghbw5ulftU+6QBqljxY=";
|
2021-06-04 13:29:50 +02:00
|
|
|
};
|
|
|
|
|
2023-04-03 12:28:57 +02:00
|
|
|
nativeBuildInputs = [ imagemagick ];
|
|
|
|
|
2024-04-08 14:48:48 +02:00
|
|
|
buildInputs = [ gettext glibcLocalesUtf8 libpng SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv ];
|
2021-06-04 13:29:50 +02:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"FHEROES2_STRICT_COMPILATION=1"
|
2022-08-12 23:33:14 +02:00
|
|
|
"FHEROES2_DATA=\"${placeholder "out"}/share/fheroes2\""
|
2021-06-04 13:29:50 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-08-12 23:33:14 +02:00
|
|
|
postBuild = ''
|
|
|
|
# Pick guaranteed to be present UTF-8 locale.
|
|
|
|
# Otherwise `iconv` calls fail to produce valid translations.
|
|
|
|
LANG=en_US.UTF_8 make -C files/lang
|
|
|
|
'';
|
|
|
|
|
2021-06-04 13:29:50 +02:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm755 $PWD/src/dist/fheroes2 $out/bin/fheroes2
|
|
|
|
|
2022-08-12 23:33:14 +02:00
|
|
|
install -Dm644 -t $out/share/fheroes2/files/lang $PWD/files/lang/*.mo
|
|
|
|
install -Dm644 -t $out/share/fheroes2/files/data $PWD/files/data/resurrection.h2d
|
|
|
|
|
2023-04-03 12:28:57 +02:00
|
|
|
install -Dm644 -t $out/share/applications $PWD/script/packaging/common/fheroes2.desktop
|
|
|
|
|
|
|
|
for size in 16 24 32 48 64 128; do
|
|
|
|
mkdir -p $out/share/icons/hicolor/"$size"x"$size"/apps
|
|
|
|
convert -resize "$size"x"$size" $PWD/src/resources/fheroes2.png $out/share/icons/hicolor/"$size"x"$size"/apps/fheroes2.png
|
|
|
|
done;
|
|
|
|
|
2021-06-04 13:29:50 +02:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-12-31 23:35:32 +01:00
|
|
|
passthru = {
|
2022-10-27 20:57:34 +02:00
|
|
|
updateScript = gitUpdater {
|
|
|
|
url = "https://github.com/ihhub/fheroes2.git";
|
2021-12-31 23:35:32 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-06-04 13:29:50 +02:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/ihhub/fheroes2";
|
|
|
|
description = "Free implementation of Heroes of Might and Magic II game engine";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "fheroes2";
|
2021-06-04 13:29:50 +02:00
|
|
|
longDescription = ''
|
|
|
|
In order to play this game, an original game data is required.
|
|
|
|
Please refer to README of the project for instructions.
|
|
|
|
On linux, the data can be placed in ~/.local/share/fheroes2 folder.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.karolchmist ];
|
2024-04-08 14:48:48 +02:00
|
|
|
platforms = platforms.unix;
|
2021-06-04 13:29:50 +02:00
|
|
|
};
|
|
|
|
}
|