chiaki: 2.1.1 -> 2.2.0

+4 -2
+4 -2
pkgs/games/chiaki/default.nix
··· 18 18 19 19 mkDerivation rec { 20 20 pname = "chiaki"; 21 - version = "2.1.1"; 21 + version = "2.2.0"; 22 22 23 23 src = fetchgit { 24 24 url = "https://git.sr.ht/~thestr4ng3r/chiaki"; 25 25 rev = "v${version}"; 26 26 fetchSubmodules = true; 27 - sha256 = "sha256-VkCA8KS4EHuVSgoYt1YDT38hA1NEBckiBwRcgDZUSs4="; 27 + hash = "sha256-mLx2ygMlIuDJt9iT4nIj/dcLGjMvvmneKd49L7C3BQk="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ ··· 33 33 protobuf 34 34 python3Packages.protobuf 35 35 python3Packages.python 36 + python3Packages.setuptools 36 37 ]; 37 38 38 39 buildInputs = [ ··· 60 61 license = licenses.agpl3Only; 61 62 maintainers = with maintainers; [ delroth ]; 62 63 platforms = platforms.all; 64 + mainProgram = "chiaki"; 63 65 }; 64 66 }