nixpkgs/pkgs/games/augustus/default.nix

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

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-11-27 11:27:46 +00:00
version = "3.1.0";
2020-06-08 18:50:52 +00:00
src = fetchFromGitHub {
owner = "Keriew";
repo = "augustus";
rev = "v${version}";
2021-11-27 11:27:46 +00:00
sha256 = "1axm4x3ca5r08sv1b4q8y9c15mkwqd3rnc8k09a2fn3plbk2p2j4";
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 ];
};
}