summary refs log tree commit diff
diff options
context:
space:
mode:
authorTom Hall <tahall256@protonmail.ch>2020-11-13 23:44:53 +0000
committerTom Hall <tahall256@protonmail.ch>2020-12-25 18:47:54 +0000
commit8992e8d5fcb424a0c0e47d93060ed28ea3b6397e (patch)
treea455463ca2e68b5726d4707f09096be58229b34c
parentca021e9c32644142abcf2b1d9cfbae4829f20e1a (diff)
downloadnixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.tar
nixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.tar.gz
nixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.tar.bz2
nixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.tar.lz
nixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.tar.xz
nixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.tar.zst
nixpkgs-8992e8d5fcb424a0c0e47d93060ed28ea3b6397e.zip
augustus: 1.4.1a -> 2.0.1
Mark as broken on darwin.
-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 cabe419ef5b..18c8842e594 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 ];
   };
 }