mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 14:14:20 +00:00
Merge pull request #326233 from corngood/godot-fix
godot3-mono: use python311 in scons
This commit is contained in:
commit
9b1b4ecaf3
@ -5,9 +5,15 @@
|
||||
, mono
|
||||
, dotnet-sdk
|
||||
, writeText
|
||||
, scons
|
||||
, python311
|
||||
}:
|
||||
|
||||
godot3.overrideAttrs (self: base: {
|
||||
(godot3.override {
|
||||
scons = scons.override {
|
||||
python3 = python311;
|
||||
};
|
||||
}).overrideAttrs (self: base: {
|
||||
pname = "godot3-mono";
|
||||
|
||||
godotBuildDescription = "mono build";
|
||||
|
@ -1,6 +1,10 @@
|
||||
{ godot3, mono }:
|
||||
{ godot3, mono, scons, python311 }:
|
||||
|
||||
godot3.overrideAttrs (self: base: {
|
||||
(godot3.override {
|
||||
scons = scons.override {
|
||||
python3 = python311;
|
||||
};
|
||||
}).overrideAttrs (self: base: {
|
||||
pname = "godot3-mono-glue";
|
||||
godotBuildDescription = "mono glue";
|
||||
godotBuildPlatform = "server";
|
||||
|
Loading…
Reference in New Issue
Block a user