Unverified Commit c9f1cf79 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #248726 from PedroHLC/godot-4.1.1

godot_4: 4.1-stable -> 4.1.1; add mainProgram
parents aceb3301 347b77eb
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -43,14 +43,14 @@ let
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 = [
@@ -148,5 +148,6 @@ stdenv.mkDerivation rec {
    license = licenses.mit;
    platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
    maintainers = with maintainers; [ twey shiryel ];
    mainProgram = "godot4";
  };
}