chiaki: 2.1.1 -> 2.2.0

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