about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2020-12-25 22:32:04 +0100
committerGitHub <noreply@github.com>2020-12-25 22:32:04 +0100
commit8dbd5276fe06332a5b8e1215fd2271fb0c6df562 (patch)
treeaf9183ab09da802e0b5d19120978277b6c5abb75 /pkgs/games
parent29f7ba6fe3c10012c6c056bb54a8252d8e8c203b (diff)
parent8992e8d5fcb424a0c0e47d93060ed28ea3b6397e (diff)
downloadnixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.tar
nixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.tar.gz
nixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.tar.bz2
nixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.tar.lz
nixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.tar.xz
nixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.tar.zst
nixlib-8dbd5276fe06332a5b8e1215fd2271fb0c6df562.zip
Merge pull request #103826 from Thra11/augustus-2-0-0
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/augustus/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/games/augustus/default.nix b/pkgs/games/augustus/default.nix
index cabe419ef5bc..18c8842e594e 100644
--- a/pkgs/games/augustus/default.nix
+++ b/pkgs/games/augustus/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "augustus";
-  version = "1.4.1a";
+  version = "2.0.1";
 
   src = fetchFromGitHub {
     owner = "Keriew";
     repo = "augustus";
     rev = "v${version}";
-    sha256 = "1xqv8j8jh3f13fjhyf7hk1anrn799cwwsvsd75kpl9n5yh5s1j5y";
+    sha256 = "0czazw8mc3fbvdazs2nzvgxd1dpzjc8z5fwiv89vv4nd7laz3jkj";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -17,8 +17,9 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "An open source re-implementation of Caesar III. Fork of Julius incorporating gameplay changes";
     homepage = "https://github.com/Keriew/augustus";
-    license = licenses.agpl3;
+    license = licenses.agpl3Only;
     platforms = platforms.all;
+    broken = stdenv.isDarwin;
     maintainers = with maintainers; [ Thra11 ];
   };
 }