mono verison fixed rizz

This commit is contained in:
foglar 2025-03-19 12:30:03 +01:00
parent 021f20f6b6
commit 0e922b0dc2
2 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@
in
stdenv.mkDerivation rec {
pname = "godot-bin";
version = "3.5.1";
version = "4.4.1";
src = fetchurl {
url = "https://github.com/godotengine/godot-builds/releases/download/4.4.1-rc1/Godot_v4.4.1-rc1_linux.x86_64.zip";

View File

@ -16,11 +16,11 @@ in
godotBin.overrideAttrs (oldAttrs: rec {
pname = "godot-mono-bin";
version = "3.5.1";
version = "4.4.1";
src = fetchurl {
url = "https://downloads.tuxfamily.org/godotengine/${version}/mono/Godot_v${version}-${qualifier}_mono_x11_64.zip";
sha256 = "7phG4vgq4m0h92gCMPv5kehQQ1BH7rS1c5VZ6Dx3WPc=";
url = "https://github.com/godotengine/godot-builds/releases/download/4.4.1-rc1/Godot_v4.4.1-rc1_mono_linux_x86_64.zip";
sha256 = "sha256-MnOgW5reNGWO1soadU4KTwVtWiZZqmLV7FX8AOUkqhg=";
};
buildInputs = oldAttrs.buildInputs ++ [zlib];
@ -29,7 +29,7 @@ godotBin.overrideAttrs (oldAttrs: rec {
installPhase = ''
mkdir -p $out/bin $out/opt/godot-mono
install -m 0755 Godot_v${version}-${qualifier}_mono_x11.64 $out/opt/godot-mono/Godot_v${version}-${qualifier}_mono_x11.64
install -m 0755 Godot_v4.4.1-rc1_mono_linux.x86_64 $out/opt/godot-mono/Godot_v${version}-${qualifier}_mono_x11.64
cp -r GodotSharp $out/opt/godot-mono
ln -s $out/opt/godot-mono/Godot_v${version}-${qualifier}_mono_x11.64 $out/bin/godot-mono