1 { lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-NS6ijgI/wLsGF5KabjaR7ElKWFXIdjpmPYHVmI4oMzQ=";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ SDL2 SDL2_mixer libpng ];
18 description = "An open source re-implementation of Caesar III. Fork of Julius incorporating gameplay changes";
19 homepage = "https://github.com/Keriew/augustus";
20 license = licenses.agpl3Only;
21 platforms = platforms.all;
22 broken = stdenv.isDarwin;
23 maintainers = with maintainers; [ Thra11 ];