-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
godot: add mono support #88006
godot: add mono support #88006
Conversation
Result of 3 packages built:
|
Under 'Editor -> Editor Settings... -> Mono -> Builds' there are two options for building Godot mono projects:
This package currently works with 'msbuild' but I haven't been able to get it to work with 'dotnet CLI'. When I manually build from source in a pure nix shell (
I noticed some differences between the dll produced in the with nix-build and manually under nix-shell:
nix-shell:
So, I am still working on this one. |
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
# Script to generate the mono-deps.nix file. | ||
set -e | ||
|
||
# Check for dotnet2nix. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of this can we enter a shell with dotnet2nix
, so that the user doesn't need to install it manually?
monoGlueGenerator = godot.overrideAttrs (oldAttrs: rec { | ||
sconsFlags = "target=release_debug platform=server tools=yes module_mono_enabled=yes mono_glue=no mono_static=yes mono_prefix=${mono}"; | ||
outputs = [ "out" ]; | ||
installPhase = "mkdir -p $out/bin && cp bin/* $out/bin"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
installPhase = "mkdir -p $out/bin && cp bin/* $out/bin"; | |
installPhase = '' | |
mkdir -p $out/bin | |
cp bin/* $out/bin | |
''; |
${monoGlueGenerator}/bin/godot_server.x11.opt.tools.*.mono --generate-mono-glue modules/mono/glue | ||
# Set a fake HOME for NuGet otherwise it gets denied permission trying to access "/homeless-shelter". | ||
export HOME=$(pwd)/fake-home |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export HOME=$(pwd)/fake-home | |
export HOME=$TMP |
#! /usr/bin/env nix-shell | ||
#! nix-shell -i bash -p coreutils dotnet-sdk nix jq | ||
# Script to generate the mono-deps.nix file. | ||
set -e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set -e | |
set -eo pipefail |
{ fetchurl }: | ||
[ | ||
EOF | ||
for package in `jq -r '.[] | @base64' nugets.json`; do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for package in `jq -r '.[] | @base64' nugets.json`; do | |
for package in $(jq -r '.[] | @base64' nugets.json); do |
I marked this as stale due to inactivity. → More info |
Closed in favor of #177578. |
Following the guide https://docs.godotengine.org/en/3.2/development/compiling/compiling_with_mono.html
Motivation for this change
The Godot game engine supports scripting with the C# programming language. However, in order to so it must be compiled with mono support. This pull request adds such an option to the Nixpkgs derivation.
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)