Skip to content

Commit dc5cb30

Browse files
authored
build(nix): prevent deprecation warning on evaluation (#3006)
Evaluating the overlay produces the following evaluation warning: `'system' has been renamed to/replaced by 'stdenv.hostPlatform.system'` <!-- Thank you for making a PR! Bug fixes are always welcome, but if you're adding a new feature or changing an existing one, we'd really appreciate if you open an issue, post on the forum, or drop in on Discord --> ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing
1 parent 0f05e0e commit dc5cb30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
})
6969
// {
7070
overlays.default = final: prev: {
71-
inherit (self.packages.${final.system}) atuin;
71+
inherit (self.packages.${final.stdenv.hostPlatform.system}) atuin;
7272
};
7373
};
7474
}

0 commit comments

Comments
 (0)