1
0
Fork 1
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:
Nikolay Amiantov 2015-02-05 19:43:20 +03:00
parent 238fe730b9
commit 627f8178b8
2 changed files with 11 additions and 3 deletions

View file

@ -4,7 +4,7 @@ buildFHSUserEnv {
name = "steam";
targetPkgs = pkgs:
[ pkgs.steam
[ pkgs.steamOriginal
pkgs.corefonts
pkgs.curl
pkgs.dbus

View file

@ -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 { };