Merge pull request #248726 from PedroHLC/godot-4.1.1

godot_4: 4.1-stable -> 4.1.1; add mainProgram
This commit is contained in:
Weijia Wang 2023-08-13 17:47:23 +02:00 committed by GitHub
commit c9f1cf7944
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
};
}