Merge pull request #223092 from wegank/godot-test

treewide: migrate more packages to scons_latest
This commit is contained in:
Weijia Wang 2023-03-25 20:05:15 +02:00 committed by GitHub
commit 03b6ad65f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 8 deletions

View file

@ -102,7 +102,7 @@ stdenv.mkDerivation rec {
homepage = "https://godotengine.org";
description = "Free and Open Source 2D and 3D game engine";
license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" ];
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [ twey ];
};
}

View file

@ -125,7 +125,7 @@ stdenv.mkDerivation rec {
homepage = "https://godotengine.org";
description = "Free and Open Source 2D and 3D game engine";
license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" ];
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [ twey shiryel ];
};
}

View file

@ -7900,13 +7900,9 @@ with pkgs;
gocryptfs = callPackage ../tools/filesystems/gocryptfs { };
godot_4 = callPackage ../development/tools/godot/4 {
scons = sconsPackages.scons_4_1_0;
};
godot_4 = callPackage ../development/tools/godot/4 { };
godot = callPackage ../development/tools/godot/3 {
scons = sconsPackages.scons_4_1_0;
};
godot = callPackage ../development/tools/godot/3 { };
godot-export-templates = callPackage ../development/tools/godot/3/export-templates.nix { };