pixelorama: Unpin godot version

Godot was pinned to 4.3, I am not sure why.
At the same time, Pixelorama clearly uses methods that were introduced
in 4.4.

Unpin the godot version to use 4.*.
This commit is contained in:
Kirill Elagin
2025-05-24 14:26:29 +02:00
parent 5e7e14d395
commit a19f555474
+2 -2
View File
@@ -2,7 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
godot_4_3,
godot_4,
nix-update-script,
}:
@@ -16,7 +16,7 @@ let
presets.${stdenv.hostPlatform.system}
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
godot = godot_4_3;
godot = godot_4;
in
stdenv.mkDerivation (finalAttrs: {
pname = "pixelorama";