From 5bbf10409ee2d2a5a8304e440067da6ad7e0277c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 27 Jan 2016 00:45:21 +0300 Subject: steam: actually propagate flags to the runtime, now from chrootenv wrapper Example: instead of (steamPackages.override { newStdcpp = true; }).steam-chrootenv (which wasn't working anyway) you now do just: steam.override { newStdcpp = true; } --- pkgs/games/steam/default.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'pkgs/games/steam/default.nix') diff --git a/pkgs/games/steam/default.nix b/pkgs/games/steam/default.nix index dd02903dcb2..64f8cfe2c28 100644 --- a/pkgs/games/steam/default.nix +++ b/pkgs/games/steam/default.nix @@ -1,17 +1,11 @@ -{ pkgs, newScope -, nativeOnly ? false -, runtimeOnly ? false -, newStdcpp ? false -}: +{ pkgs, newScope }: let callPackage = newScope self; self = rec { steam-runtime = callPackage ./runtime.nix { }; - steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { - inherit nativeOnly runtimeOnly newStdcpp; - }; + steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { }; steam = callPackage ./steam.nix { }; steam-chrootenv = callPackage ./chrootenv.nix { }; steam-fonts = callPackage ./fonts.nix { }; -- cgit 1.4.1