nixpkgs/pkgs/games/steam/default.nix
2015-10-15 15:17:13 +03:00

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