aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Jakobi <marc@jakobi.dev>2025-12-03 01:52:14 +0100
committerGitHub <noreply@github.com>2025-12-02 16:52:14 -0800
commitdc5cb308b58b15574f240480bba7856552482bc0 (patch)
tree4e021cbe1f09cb5c1bc146ece51624e15ed6c26e
parentchore: clarify docstring of the enter_accept config key (#3003) (diff)
downloadatuin-dc5cb308b58b15574f240480bba7856552482bc0.zip
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
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index df96a9af..45ec70f6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -68,7 +68,7 @@
})
// {
overlays.default = final: prev: {
- inherit (self.packages.${final.system}) atuin;
+ inherit (self.packages.${final.stdenv.hostPlatform.system}) atuin;
};
};
}