about summary refs log tree commit diff
path: root/pkgs/games/steam-tui
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-02-21 17:02:54 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-03-02 12:25:45 -0800
commit5f91781b55cde7aba6d4c2165e43c9ebe3023590 (patch)
treeb28347f68279dd6d522dbc296bb501cb57223d01 /pkgs/games/steam-tui
parentee5fab452b279d59c0a9278bf7e009667b0ef774 (diff)
downloadnixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.tar
nixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.tar.gz
nixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.tar.bz2
nixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.tar.lz
nixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.tar.xz
nixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.tar.zst
nixlib-5f91781b55cde7aba6d4c2165e43c9ebe3023590.zip
treewide: remove steam-run-native
Diffstat (limited to 'pkgs/games/steam-tui')
-rw-r--r--pkgs/games/steam-tui/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/steam-tui/default.nix b/pkgs/games/steam-tui/default.nix
index 66e17b1752ea..63deb3b969ce 100644
--- a/pkgs/games/steam-tui/default.nix
+++ b/pkgs/games/steam-tui/default.nix
@@ -2,7 +2,7 @@
 , rustPlatform
 , steamcmd
 , fetchFromGitHub
-, steam-run-native
+, steam-run
 , runtimeShell
 , withWine ? false
 , wine
@@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "sha256-VYBzwDLSV4N4qt2dNgIS399T2HIbPTdQ2rDIeheLlfo=";
 
-  buildInputs = [ steamcmd steam-run-native ]
+  buildInputs = [ steamcmd ]
     ++ lib.optional withWine wine;
 
   preFixup = ''
@@ -29,7 +29,7 @@ rustPlatform.buildRustPackage rec {
     cat > $out/bin/steam-tui <<EOF
     #!${runtimeShell}
     export PATH=${steamcmd}/bin:\$PATH
-    exec ${steam-run-native}/bin/steam-run $out/bin/.steam-tui-unwrapped '\$@'
+    exec ${steam-run}/bin/steam-run $out/bin/.steam-tui-unwrapped '\$@'
     EOF
     chmod +x $out/bin/steam-tui
   '';