about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/default.nix7
-rw-r--r--pkgs/games/gog/default.nix2
2 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/games/default.nix b/pkgs/games/default.nix
index ae86d30e..bead9271 100644
--- a/pkgs/games/default.nix
+++ b/pkgs/games/default.nix
@@ -1,4 +1,6 @@
-{ config ? null, pkgs ? import <nixpkgs> {} }:
+{ config ? null, pkgs ? import <nixpkgs> {}
+, pkgsi686Linux ? pkgs.pkgsi686Linux
+}:
 
 let
   configFilePath = let
@@ -34,8 +36,7 @@ let
     };
 
     config._module.args.pkgs = pkgs // (mkBuildSupport pkgs) // {
-      pkgsi686Linux = pkgs.pkgsi686Linux
-                   // (mkBuildSupport pkgs.pkgsi686Linux);
+      pkgsi686Linux = pkgsi686Linux // (mkBuildSupport pkgsi686Linux);
     };
   };
 
diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix
index 99cf2d2e..38ebf489 100644
--- a/pkgs/games/gog/default.nix
+++ b/pkgs/games/gog/default.nix
@@ -11,7 +11,7 @@ let
       inherit (config.gog) email password;
     };
 
-    albion = callPackage_i686 ./albion { inherit (pkgs) buildSandbox; };
+    albion = callPackage_i686 ./albion {};
     dungeons3 = callPackage ./dungeons3.nix {};
     overload = callPackage ./overload.nix {};
     party-hard = callPackage ./party-hard.nix {};