3
0
Fork 0
forked from mirrors/nixpkgs

steam: propagate runtime-wrapped flags for more convenient overrides

This commit is contained in:
Nikolay Amiantov 2016-01-15 14:57:17 +03:00
parent 9a07a8505e
commit f4d71737a8

View file

@ -1,11 +1,17 @@
{ pkgs, newScope }:
{ pkgs, newScope
, nativeOnly ? false
, runtimeOnly ? false
, newStdcpp ? false
}:
let
callPackage = newScope self;
self = rec {
steam-runtime = callPackage ./runtime.nix { };
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix {
inherit nativeOnly runtimeOnly newStdcpp;
};
steam = callPackage ./steam.nix { };
steam-chrootenv = callPackage ./chrootenv.nix { };
steam-fonts = callPackage ./fonts.nix { };