Merge pull request #171310 from IvarWithoutBones/fix/dotnetmodule-flags

buildDotnetModule drvs: fix flags

authored by

Ivv and committed by
GitHub
1bae25ac 5f721cfb

+7 -10
+4 -5
pkgs/applications/emulators/ryujinx/default.nix
··· 58 58 pulseaudio 59 59 ]; 60 60 61 + makeWrapperArgs = [ 62 + "--suffix PATH : ${lib.getBin ffmpeg}" 63 + ]; 64 + 61 65 patches = [ 62 66 ./appdir.patch # Ryujinx attempts to write to the nix store. This patch redirects it to "~/.config/Ryujinx" on Linux. 63 67 ]; ··· 66 70 # workaround for https://github.com/Ryujinx/Ryujinx/issues/2349 67 71 mkdir -p $out/lib/sndio-6 68 72 ln -s ${sndio}/lib/libsndio.so $out/lib/sndio-6/libsndio.so.6 69 - 70 - # Ryujinx tries to use ffmpeg from PATH 71 - makeWrapperArgs+=( 72 - --suffix PATH : ${lib.makeBinPath [ ffmpeg ]} 73 - ) 74 73 ''; 75 74 76 75 preFixup = ''
+3 -5
pkgs/games/osu-lazer/default.nix
··· 31 31 32 32 nativeBuildInputs = [ copyDesktopItems ]; 33 33 34 - preConfigure = '' 35 - dotnetFlags+=( 36 - --runtime linux-x64 37 - ) 38 - ''; 34 + dotnetFlags = [ 35 + "--runtime linux-x64" 36 + ]; 39 37 40 38 runtimeDeps = [ 41 39 ffmpeg