forked from mirrors/nixpkgs
steam: propagate runtime-wrapped flags for more convenient overrides
This commit is contained in:
parent
9a07a8505e
commit
f4d71737a8
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue