We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dfa7ed3 + c1f33d6 commit e09b4c0Copy full SHA for e09b4c0
nix/checks/flake-module.nix
@@ -10,7 +10,7 @@
10
inherit self pkgs;
11
};
12
in
13
- lib.mkIf (pkgs.hostPlatform.isLinux) {
+ lib.mkIf (pkgs.stdenv.hostPlatform.isLinux) {
14
master = import ./master.nix checkArgs;
15
worker = import ./worker.nix checkArgs;
16
effects = import ./effects.nix checkArgs;
nix/master.nix
@@ -536,7 +536,7 @@ in
536
537
buildSystems = lib.mkOption {
538
type = lib.types.listOf lib.types.str;
539
- default = [ pkgs.hostPlatform.system ];
+ default = [ pkgs.stdenv.hostPlatform.system ];
540
description = "Systems that we will be build";
541
542
evalMaxMemorySize = lib.mkOption {
0 commit comments