nixpkgs/pkgs/games/augustus/default.nix

26 lines
726 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
2020-06-08 18:50:52 +00:00
stdenv.mkDerivation rec {
pname = "augustus";
2021-05-23 20:22:29 +00:00
version = "3.0.1";
2020-06-08 18:50:52 +00:00
src = fetchFromGitHub {
owner = "Keriew";
repo = "augustus";
rev = "v${version}";
2021-05-23 20:22:29 +00:00
sha256 = "03pmnwq6bahq854vh1vmv1vabb8cs0alca8f36id8dlz8bw95nik";
2020-06-08 18:50:52 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 SDL2_mixer libpng ];
meta = with lib; {
2020-06-08 18:50:52 +00:00
description = "An open source re-implementation of Caesar III. Fork of Julius incorporating gameplay changes";
homepage = "https://github.com/Keriew/augustus";
license = licenses.agpl3Only;
2020-06-08 18:50:52 +00:00
platforms = platforms.all;
broken = stdenv.isDarwin;
2020-06-08 18:50:52 +00:00
maintainers = with maintainers; [ Thra11 ];
};
}