mirror of
https://github.com/atuinsh/atuin.git
synced 2025-12-23 08:48:11 +00:00
build(nix): prevent deprecation warning on evaluation (#3006)
Some checks are pending
Codespell / Check for spelling errors (push) Waiting to run
build-docker / publish_x86 (push) Waiting to run
Install / install (macos-14) (push) Waiting to run
Install / install (ubuntu-latest) (push) Waiting to run
build-docker / publish_aarch64 (push) Waiting to run
build-docker / publish_manifest (push) Blocked by required conditions
Nix / check (push) Waiting to run
Nix / build-test (push) Waiting to run
Rust / cross-compile (x86_64-unknown-illumos) (push) Waiting to run
Rust / build (macos-14) (push) Waiting to run
Rust / build (ubuntu-latest) (push) Waiting to run
Rust / build (windows-latest) (push) Waiting to run
Rust / unit-test (macos-14) (push) Waiting to run
Rust / unit-test (ubuntu-latest) (push) Waiting to run
Rust / unit-test (windows-latest) (push) Waiting to run
Rust / check (macos-14) (push) Waiting to run
Rust / check (ubuntu-latest) (push) Waiting to run
Rust / integration-test (push) Waiting to run
Rust / check (windows-latest) (push) Waiting to run
Rust / clippy (push) Waiting to run
Rust / format (push) Waiting to run
Shellcheck / shellcheck (push) Waiting to run
Some checks are pending
Codespell / Check for spelling errors (push) Waiting to run
build-docker / publish_x86 (push) Waiting to run
Install / install (macos-14) (push) Waiting to run
Install / install (ubuntu-latest) (push) Waiting to run
build-docker / publish_aarch64 (push) Waiting to run
build-docker / publish_manifest (push) Blocked by required conditions
Nix / check (push) Waiting to run
Nix / build-test (push) Waiting to run
Rust / cross-compile (x86_64-unknown-illumos) (push) Waiting to run
Rust / build (macos-14) (push) Waiting to run
Rust / build (ubuntu-latest) (push) Waiting to run
Rust / build (windows-latest) (push) Waiting to run
Rust / unit-test (macos-14) (push) Waiting to run
Rust / unit-test (ubuntu-latest) (push) Waiting to run
Rust / unit-test (windows-latest) (push) Waiting to run
Rust / check (macos-14) (push) Waiting to run
Rust / check (ubuntu-latest) (push) Waiting to run
Rust / integration-test (push) Waiting to run
Rust / check (windows-latest) (push) Waiting to run
Rust / clippy (push) Waiting to run
Rust / format (push) Waiting to run
Shellcheck / shellcheck (push) Waiting to run
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
This commit is contained in:
parent
0f05e0ea08
commit
dc5cb308b5
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@
|
|||
})
|
||||
// {
|
||||
overlays.default = final: prev: {
|
||||
inherit (self.packages.${final.system}) atuin;
|
||||
inherit (self.packages.${final.stdenv.hostPlatform.system}) atuin;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue