From e4c982fd6d092eb095a11a2b40f5db359bc0dc2c Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Tue, 22 Aug 2023 23:10:12 +0200 Subject: [PATCH] chiaki: 2.1.1 -> 2.2.0 --- pkgs/games/chiaki/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/games/chiaki/default.nix b/pkgs/games/chiaki/default.nix index 29ac2d0da3e3..e450f472e8d5 100644 --- a/pkgs/games/chiaki/default.nix +++ b/pkgs/games/chiaki/default.nix @@ -18,13 +18,13 @@ mkDerivation rec { pname = "chiaki"; - version = "2.1.1"; + version = "2.2.0"; src = fetchgit { url = "https://git.sr.ht/~thestr4ng3r/chiaki"; rev = "v${version}"; fetchSubmodules = true; - sha256 = "sha256-VkCA8KS4EHuVSgoYt1YDT38hA1NEBckiBwRcgDZUSs4="; + hash = "sha256-mLx2ygMlIuDJt9iT4nIj/dcLGjMvvmneKd49L7C3BQk="; }; nativeBuildInputs = [ @@ -33,6 +33,7 @@ mkDerivation rec { protobuf python3Packages.protobuf python3Packages.python + python3Packages.setuptools ]; buildInputs = [ @@ -60,5 +61,6 @@ mkDerivation rec { license = licenses.agpl3Only; maintainers = with maintainers; [ delroth ]; platforms = platforms.all; + mainProgram = "chiaki"; }; }