Skip to content

Commit e09b4c0

Browse files
authored
Merge pull request #401 from isabelroses/fix/nixpkgs-no-aliases
fix: nixpkgs no aliases
2 parents dfa7ed3 + c1f33d6 commit e09b4c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nix/checks/flake-module.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
inherit self pkgs;
1111
};
1212
in
13-
lib.mkIf (pkgs.hostPlatform.isLinux) {
13+
lib.mkIf (pkgs.stdenv.hostPlatform.isLinux) {
1414
master = import ./master.nix checkArgs;
1515
worker = import ./worker.nix checkArgs;
1616
effects = import ./effects.nix checkArgs;

nix/master.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ in
536536
};
537537
buildSystems = lib.mkOption {
538538
type = lib.types.listOf lib.types.str;
539-
default = [ pkgs.hostPlatform.system ];
539+
default = [ pkgs.stdenv.hostPlatform.system ];
540540
description = "Systems that we will be build";
541541
};
542542
evalMaxMemorySize = lib.mkOption {

0 commit comments

Comments
 (0)