discourse: Forward the used system and pkgs attributes to the tests

The system attribute is otherwise deduced from the system the
evaluation runs on, which could be incorrect if using remote
builders.
This commit is contained in:
talyz 2021-12-22 14:30:05 +01:00
parent 1138af5637
commit ae77e2fb78
No known key found for this signature in database
GPG Key ID: 2DED2151F4671A2B

View File

@ -313,7 +313,11 @@ let
enabledPlugins = plugins;
plugins = callPackage ./plugins/all-plugins.nix { inherit mkDiscoursePlugin; };
ruby = rubyEnv.wrappedRuby;
tests = import ../../../../nixos/tests/discourse.nix { package = pkgs.discourse.override args; };
tests = import ../../../../nixos/tests/discourse.nix {
inherit (stdenv) system;
inherit pkgs;
package = pkgs.discourse.override args;
};
};
};
in discourse