summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2022-12-19 18:35:14 -0300
committerGitHub <noreply@github.com>2022-12-19 18:35:14 -0300
commit5eb3cbe103f5a79d459dace79005d857a40106bc (patch)
tree6c1569721c45014f9d250b422033283a4483af37 /pkgs/games
parent6052729bba8cc0b3139b18c5ef87fd78ebb6cb8f (diff)
parent627cbab3f4ef8c784335d79999bdfadfba015f9a (diff)
downloadnixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.tar
nixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.tar.gz
nixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.tar.bz2
nixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.tar.lz
nixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.tar.xz
nixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.tar.zst
nixpkgs-5eb3cbe103f5a79d459dace79005d857a40106bc.zip
Merge pull request #194276 from corngood/dotnet-misc
dotnet: improve rid handling
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/BeatSaberModManager/default.nix2
-rw-r--r--pkgs/games/osu-lazer/default.nix4
-rw-r--r--pkgs/games/xivlauncher/default.nix6
3 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/games/BeatSaberModManager/default.nix b/pkgs/games/BeatSaberModManager/default.nix
index 8d607268dc6..ceef75f4585 100644
--- a/pkgs/games/BeatSaberModManager/default.nix
+++ b/pkgs/games/BeatSaberModManager/default.nix
@@ -34,7 +34,7 @@ buildDotnetModule rec {
   patches = [
     (substituteAll {
       src = ./add-runtime-identifier.patch;
-      runtimeIdentifier = dotnet-sdk.passthru.systemToDotnetRid targetPlatform.system;
+      runtimeIdentifier = dotnetCorePackages.systemToDotnetRid targetPlatform.system;
     })
   ];
 
diff --git a/pkgs/games/osu-lazer/default.nix b/pkgs/games/osu-lazer/default.nix
index cfcb69625d8..f400c0e3e13 100644
--- a/pkgs/games/osu-lazer/default.nix
+++ b/pkgs/games/osu-lazer/default.nix
@@ -28,10 +28,6 @@ buildDotnetModule rec {
 
   nativeBuildInputs = [ copyDesktopItems ];
 
-  dotnetFlags = [
-    "--runtime linux-x64"
-  ];
-
   runtimeDeps = [
     ffmpeg
     alsa-lib
diff --git a/pkgs/games/xivlauncher/default.nix b/pkgs/games/xivlauncher/default.nix
index 0bd586d458c..b8560f2b413 100644
--- a/pkgs/games/xivlauncher/default.nix
+++ b/pkgs/games/xivlauncher/default.nix
@@ -23,12 +23,8 @@ in
     nugetDeps = ./deps.nix; # File generated with `nix-build -A xivlauncher.passthru.fetch-deps`
 
     dotnetFlags = [
-      "--runtime linux-x64"
       "-p:BuildHash=${rev}"
-    ];
-
-    dotnetBuildFlags = [
-      "--no-self-contained"
+      "-p:PublishSingleFile=false"
     ];
 
     postPatch = ''