Merge pull request #326478 from doronbehar/pkg/scons-fix-eval

godot3-mono: fix scons override python3 argument
This commit is contained in:
K900
2024-07-12 08:52:02 +03:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
@@ -6,12 +6,12 @@
, dotnet-sdk
, writeText
, scons
, python311
, python311Packages
}:
(godot3.override {
scons = scons.override {
python3 = python311;
python3Packages = python311Packages;
};
}).overrideAttrs (self: base: {
pname = "godot3-mono";
+2 -2
View File
@@ -1,8 +1,8 @@
{ godot3, mono, scons, python311 }:
{ godot3, mono, scons, python311Packages }:
(godot3.override {
scons = scons.override {
python3 = python311;
python3Packages = python311Packages;
};
}).overrideAttrs (self: base: {
pname = "godot3-mono-glue";