2024-07-18 23:23:51 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
|
|
SDL2,
|
|
|
|
SDL2_mixer,
|
|
|
|
libpng,
|
|
|
|
darwin,
|
|
|
|
libicns,
|
|
|
|
imagemagick,
|
|
|
|
}:
|
2020-06-08 18:50:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "augustus";
|
2023-12-29 06:39:13 +00:00
|
|
|
version = "4.0.0";
|
2020-06-08 18:50:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Keriew";
|
|
|
|
repo = "augustus";
|
|
|
|
rev = "v${version}";
|
2023-12-29 06:39:13 +00:00
|
|
|
sha256 = "sha256-UWJmxirRJJqvL4ZSjBvFepeKVvL77+WMp4YdZuFNEkg=";
|
2020-06-08 18:50:52 +00:00
|
|
|
};
|
|
|
|
|
2024-07-18 23:21:45 +00:00
|
|
|
patches = [ ./darwin-fixes.patch ];
|
|
|
|
|
2024-07-18 23:23:51 +00:00
|
|
|
nativeBuildInputs =
|
|
|
|
[ cmake ]
|
2024-09-24 15:50:49 +00:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
2024-07-18 23:23:51 +00:00
|
|
|
darwin.sigtool
|
|
|
|
libicns
|
|
|
|
imagemagick
|
|
|
|
];
|
2024-07-18 23:21:45 +00:00
|
|
|
|
2024-07-18 23:23:51 +00:00
|
|
|
buildInputs = [
|
|
|
|
SDL2
|
|
|
|
SDL2_mixer
|
|
|
|
libpng
|
2024-09-24 15:50:49 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
|
2024-07-18 23:21:45 +00:00
|
|
|
|
2024-09-24 15:50:49 +00:00
|
|
|
installPhase = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2024-07-18 23:21:45 +00:00
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications
|
|
|
|
cp -r augustus.app $out/Applications/
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2020-06-08 18:50:52 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-08 18:50:52 +00:00
|
|
|
description = "Open source re-implementation of Caesar III. Fork of Julius incorporating gameplay changes";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "augustus";
|
2020-06-08 18:50:52 +00:00
|
|
|
homepage = "https://github.com/Keriew/augustus";
|
2020-11-13 23:44:53 +00:00
|
|
|
license = licenses.agpl3Only;
|
2024-07-18 23:21:45 +00:00
|
|
|
platforms = platforms.unix;
|
2024-07-18 23:23:51 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
Thra11
|
|
|
|
matteopacini
|
|
|
|
];
|
2020-06-08 18:50:52 +00:00
|
|
|
};
|
|
|
|
}
|