shells/ryujinx: set DOTNET_ROOT

This commit is contained in:
Artemis Tosini 2024-10-02 03:10:58 +00:00
parent 7b64ee57b7
commit bc6c5e0cb2
Signed by: artemist
GPG key ID: EE5227935FE3FF18

View file

@ -24,13 +24,21 @@
udev, udev,
}: }:
let
sdk =
with dotnetCorePackages;
combinePackages [
sdk_8_0
runtime_8_0
];
in
mkShell { mkShell {
packages = [ packages = [
# dotnet sdk
dotnetCorePackages.sdk_8_0
dotnetCorePackages.runtime_8_0
]; ];
DOTNET_ROOT = "${sdk}";
LD_LIBRARY_PATH = lib.makeLibraryPath [ LD_LIBRARY_PATH = lib.makeLibraryPath [
# Base # Base
libX11 libX11