3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/steam/default.nix

20 lines
498 B
Nix
Raw Normal View History

{ pkgs, newScope }:
let
callPackage = newScope self;
2014-04-23 00:03:14 +01:00
self = rec {
steam-runtime = callPackage ./runtime.nix { };
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
steam = callPackage ./steam.nix { };
2015-10-15 13:17:13 +01:00
steam-fonts = callPackage ./fonts.nix { };
2016-04-03 02:19:00 +01: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-23 00:03:14 +01:00
in self