Merge pull request #307738 from r-ryantm/auto-update/freeciv

freeciv: 3.1.0 -> 3.1.1

authored by Weijia Wang and committed by GitHub 9f5a6d72 d54b09a5

+7 -7
+7 -7
pkgs/games/freeciv/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "freeciv"; 13 - version = "3.1.0"; 13 + version = "3.1.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "freeciv"; 17 17 repo = "freeciv"; 18 18 rev = "R${lib.replaceStrings [ "." ] [ "_" ] version}"; 19 - hash = "sha256-8cMy0O5VxVi1ffvA/Gz4BnTB0WvJptMSgM7Zu992k5k="; 19 + hash = "sha256-ImjXDJ1Bq85OfUhxGe184cd5eu4a8BrZh+YYhzUdrLo="; 20 20 }; 21 21 22 22 postPatch = '' ··· 70 70 71 71 enableParallelBuilding = true; 72 72 73 - meta = with lib; { 73 + meta = { 74 74 description = "Multiplayer (or single player), turn-based strategy game"; 75 75 longDescription = '' 76 76 Freeciv is a Free and Open Source empire-building strategy game ··· 79 79 to the space age... 80 80 ''; 81 81 homepage = "http://www.freeciv.org"; # http only 82 - license = licenses.gpl2; 83 - maintainers = with maintainers; [ pierron ]; 84 - platforms = platforms.unix; 85 - hydraPlatforms = platforms.linux; # sdl-config times out on darwin 82 + license = lib.licenses.gpl2; 83 + maintainers = with lib.maintainers; [ pierron ]; 84 + platforms = lib.platforms.unix; 85 + hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin 86 86 broken = qtClient && stdenv.isDarwin; # Missing Qt5 development files 87 87 }; 88 88 }