nixpkgs/pkgs/games/steam/default.nix

15 lines
347 B
Nix
Raw Normal View History

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