1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/games/steam/default.nix

14 lines
300 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 { };
steam-chrootenv = callPackage ./chrootenv.nix { };
};
2014-04-23 00:03:14 +01:00
in self