mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
steam: rename, add a warning
This commit is contained in:
parent
238fe730b9
commit
627f8178b8
@ -4,7 +4,7 @@ buildFHSUserEnv {
|
|||||||
name = "steam";
|
name = "steam";
|
||||||
|
|
||||||
targetPkgs = pkgs:
|
targetPkgs = pkgs:
|
||||||
[ pkgs.steam
|
[ pkgs.steamOriginal
|
||||||
pkgs.corefonts
|
pkgs.corefonts
|
||||||
pkgs.curl
|
pkgs.curl
|
||||||
pkgs.dbus
|
pkgs.dbus
|
||||||
|
@ -12153,9 +12153,17 @@ let
|
|||||||
|
|
||||||
stardust = callPackage ../games/stardust {};
|
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 { };
|
stuntrally = callPackage ../games/stuntrally { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user