mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
steam: rename, add a warning
This commit is contained in:
parent
238fe730b9
commit
627f8178b8
|
@ -4,7 +4,7 @@ buildFHSUserEnv {
|
|||
name = "steam";
|
||||
|
||||
targetPkgs = pkgs:
|
||||
[ pkgs.steam
|
||||
[ pkgs.steamOriginal
|
||||
pkgs.corefonts
|
||||
pkgs.curl
|
||||
pkgs.dbus
|
||||
|
|
|
@ -12153,9 +12153,17 @@ let
|
|||
|
||||
stardust = callPackage ../games/stardust {};
|
||||
|
||||
steam = callPackage ../games/steam {};
|
||||
steamOriginal = callPackage ../games/steam { };
|
||||
|
||||
steamChrootEnv = callPackage ../games/steam/chrootenv.nix { };
|
||||
steam = callPackage ../games/steam/chrootenv.nix { };
|
||||
|
||||
steamChrootEnv = steam.overrideDerivation (args: {
|
||||
buildCommand = ''
|
||||
${args.buildCommand}
|
||||
echo >&2 "'steamChrootEnv' is replaced with 'steam' now"
|
||||
echo >&2 "You now need just to run 'steam' without root rights"
|
||||
'';
|
||||
});
|
||||
|
||||
stuntrally = callPackage ../games/stuntrally { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue