tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
augustus: init at 1.4.1a
Tom Hall
5 years ago
b5bb2015
731f7222
+26
2 changed files
expand all
collapse all
unified
split
pkgs
games
augustus
default.nix
top-level
all-packages.nix
+24
pkgs/games/augustus/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
10614
julius = callPackage ../games/julius { };
10615
0
0
10616
kafkacat = callPackage ../development/tools/kafkacat { };
10617
10618
kati = callPackage ../development/tools/build-managers/kati { };
···
10613
10614
julius = callPackage ../games/julius { };
10615
10616
+
augustus = callPackage ../games/augustus { };
10617
+
10618
kafkacat = callPackage ../development/tools/kafkacat { };
10619
10620
kati = callPackage ../development/tools/build-managers/kati { };