python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / augustus / default.nix
blobdf10516ab35c105b6378ae26684e1a2c696ff063
1 { lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
3 stdenv.mkDerivation rec {
4   pname = "augustus";
5   version = "3.2.0";
7   src = fetchFromGitHub {
8     owner = "Keriew";
9     repo = "augustus";
10     rev = "v${version}";
11     sha256 = "sha256-NS6ijgI/wLsGF5KabjaR7ElKWFXIdjpmPYHVmI4oMzQ=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ SDL2 SDL2_mixer libpng ];
17   meta = with lib; {
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 ];
24   };