nixpkgs/pkgs/games/augustus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.2 KiB
Nix
Raw Normal View History

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 ]
++ 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
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
2024-07-18 23:21:45 +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
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";
mainProgram = "augustus";
2020-06-08 18:50:52 +00:00
homepage = "https://github.com/Keriew/augustus";
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
};
}