Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

augustus: init at 1.4.1a

Tom Hall b5bb2015 731f7222

+26
+24
pkgs/games/augustus/default.nix
··· 1 + { stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "augustus"; 5 + version = "1.4.1a"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Keriew"; 9 + repo = "augustus"; 10 + rev = "v${version}"; 11 + sha256 = "1xqv8j8jh3f13fjhyf7hk1anrn799cwwsvsd75kpl9n5yh5s1j5y"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + buildInputs = [ SDL2 SDL2_mixer libpng ]; 16 + 17 + meta = with stdenv.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.agpl3; 21 + platforms = platforms.all; 22 + maintainers = with maintainers; [ Thra11 ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 10613 10613 10614 10614 julius = callPackage ../games/julius { }; 10615 10615 10616 + augustus = callPackage ../games/augustus { }; 10617 + 10616 10618 kafkacat = callPackage ../development/tools/kafkacat { }; 10617 10619 10618 10620 kati = callPackage ../development/tools/build-managers/kati { };