nixpkgs/pkgs/games/steam/default.nix

15 lines
347 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 { };
steam-chrootenv = callPackage ./chrootenv.nix { };
2015-10-15 12:17:13 +00:00
steam-fonts = callPackage ./fonts.nix { };
};
2014-04-22 23:03:14 +00:00
in self