nixpkgs/pkgs/games/steam/default.nix

20 lines
498 B
Nix
Raw Normal View History

{ pkgs, newScope }:
let
callPackage = newScope self;
2014-04-22 23:03:14 +00:00
self = rec {
steam-runtime = callPackage ./runtime.nix { };
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
steam = callPackage ./steam.nix { };
2015-10-15 12:17:13 +00:00
steam-fonts = callPackage ./fonts.nix { };
2016-04-03 01:19:00 +00:00
steam-chrootenv = callPackage ./chrootenv.nix {
steam-runtime-i686 =
if pkgs.system == "x86_64-linux"
then pkgs.pkgsi686Linux.steamPackages.steam-runtime
else null;
};
};
2014-04-22 23:03:14 +00:00
in self