about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/steam/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/steam/default.nix')
-rw-r--r--nixpkgs/pkgs/games/steam/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/steam/default.nix b/nixpkgs/pkgs/games/steam/default.nix
new file mode 100644
index 000000000000..370f22268a9a
--- /dev/null
+++ b/nixpkgs/pkgs/games/steam/default.nix
@@ -0,0 +1,37 @@
+{ makeScopeWithSplicing, generateSplicesForMkScope
+, stdenv, buildFHSEnv, pkgsi686Linux, glxinfo
+}:
+
+let
+  steamPackagesFun = self: let
+    inherit (self) callPackage;
+  in rec {
+    steamArch = if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
+                else if stdenv.hostPlatform.system == "i686-linux" then "i386"
+                else throw "Unsupported platform: ${stdenv.hostPlatform.system}";
+
+    steam-runtime = callPackage ./runtime.nix { };
+    steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
+    steam = callPackage ./steam.nix { };
+    steam-fhsenv = callPackage ./fhsenv.nix {
+      glxinfo-i686 =
+        if self.steamArch == "amd64"
+        then pkgsi686Linux.glxinfo
+        else glxinfo;
+      steam-runtime-wrapped-i686 =
+        if self.steamArch == "amd64"
+        then pkgsi686Linux.steamPackages.steam-runtime-wrapped
+        else null;
+      inherit buildFHSEnv;
+    };
+    steam-fhsenv-small = steam-fhsenv.override { withGameSpecificLibraries = false; };
+
+    # This has to exist so Hydra tries to build all of Steam's dependencies.
+    # FIXME: Maybe we should expose it as something more generic?
+    steam-fhsenv-without-steam = steam-fhsenv.override { steam = null; };
+
+    steamcmd = callPackage ./steamcmd.nix { };
+  };
+  keep = self: { };
+  extra = spliced0: { };
+in makeScopeWithSplicing (generateSplicesForMkScope "steamPackages") keep extra steamPackagesFun