mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 00:12:39 +03:00
5bbf10409e
Example: instead of (steamPackages.override { newStdcpp = true; }).steam-chrootenv (which wasn't working anyway) you now do just: steam.override { newStdcpp = true; }
15 lines
347 B
Nix
15 lines
347 B
Nix
{ pkgs, newScope }:
|
|
|
|
let
|
|
callPackage = newScope self;
|
|
|
|
self = rec {
|
|
steam-runtime = callPackage ./runtime.nix { };
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
|
steam = callPackage ./steam.nix { };
|
|
steam-chrootenv = callPackage ./chrootenv.nix { };
|
|
steam-fonts = callPackage ./fonts.nix { };
|
|
};
|
|
|
|
in self
|