From 009567814bfea842f1bb52e4de2d56a241c4190b Mon Sep 17 00:00:00 2001 From: Atemu Date: Sun, 16 Oct 2022 16:18:10 +0200 Subject: [PATCH] steam-run: provide meta (#196273) Fixes https://github.com/NixOS/nix/issues/4527 --- pkgs/games/steam/fhsenv.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/games/steam/fhsenv.nix b/pkgs/games/steam/fhsenv.nix index 8ad1600701d5..ea9db37cbddf 100644 --- a/pkgs/games/steam/fhsenv.nix +++ b/pkgs/games/steam/fhsenv.nix @@ -294,5 +294,10 @@ in buildFHSUserEnv rec { ${fixBootstrap} exec -- "$run" "$@" ''; + + meta = steam.meta // { + description = "Run commands in the same FHS environment that is used for Steam"; + name = "steam-run"; + }; }; }