Merge pull request #248726 from PedroHLC/godot-4.1.1

godot_4: 4.1-stable -> 4.1.1; add mainProgram

Changed files
+4 -3
pkgs
development
tools
godot
+4 -3
pkgs/development/tools/godot/4/default.nix
···
in
stdenv.mkDerivation rec {
pname = "godot";
-
version = "4.1-stable";
-
commitHash = "970459615f6b2b4151742ec6d7ef8559f87fd5c5";
+
version = "4.1.1";
+
commitHash = "bd6af8e0ea69167dd0627f3bd54f9105bda0f8b5";
src = fetchFromGitHub {
owner = "godotengine";
repo = "godot";
rev = commitHash;
-
hash = "sha256-v9qKrPYQz4c+xkSu/2ru7ZE5EzKVyXhmrxyHZQkng2U=";
+
hash = "sha256-0CErsMTrBC/zYcabAtjYn8BWAZ1HxgozKdgiqdsn3q8=";
};
nativeBuildInputs = [
···
license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [ twey shiryel ];
+
mainProgram = "godot4";
};
}