fix(nix): add missing targets to flake.nix
Some checks failed
Build Zenyx ⚡ / 🧪 Run Cargo Tests (push) Successful in 3m58s
Build Zenyx ⚡ / 🏗️ Build aarch64-apple-darwin (push) Failing after 8m5s
Build Zenyx ⚡ / 🏗️ Build x86_64-apple-darwin (push) Failing after 8m8s
Build Zenyx ⚡ / 🏗️ Build aarch64-unknown-linux-gnu (push) Successful in 8m20s
Build Zenyx ⚡ / 🏗️ Build aarch64-pc-windows-msvc (push) Successful in 8m39s
Build Zenyx ⚡ / 🏗️ Build x86_64-unknown-linux-gnu (push) Successful in 6m4s
Build Zenyx ⚡ / 🏗️ Build x86_64-pc-windows-msvc (push) Successful in 6m18s
Some checks failed
Build Zenyx ⚡ / 🧪 Run Cargo Tests (push) Successful in 3m58s
Build Zenyx ⚡ / 🏗️ Build aarch64-apple-darwin (push) Failing after 8m5s
Build Zenyx ⚡ / 🏗️ Build x86_64-apple-darwin (push) Failing after 8m8s
Build Zenyx ⚡ / 🏗️ Build aarch64-unknown-linux-gnu (push) Successful in 8m20s
Build Zenyx ⚡ / 🏗️ Build aarch64-pc-windows-msvc (push) Successful in 8m39s
Build Zenyx ⚡ / 🏗️ Build x86_64-unknown-linux-gnu (push) Successful in 6m4s
Build Zenyx ⚡ / 🏗️ Build x86_64-pc-windows-msvc (push) Successful in 6m18s
This commit is contained in:
parent
6884e80646
commit
c86be3ca3d
1 changed files with 10 additions and 4 deletions
10
flake.nix
10
flake.nix
|
@ -74,8 +74,14 @@
|
||||||
nativeBuildInputs = with pkgs; [
|
nativeBuildInputs = with pkgs; [
|
||||||
(rust-bin.stable.latest.default.override {
|
(rust-bin.stable.latest.default.override {
|
||||||
extensions = ["rust-src" "cargo" "rustfmt" "clippy"];
|
extensions = ["rust-src" "cargo" "rustfmt" "clippy"];
|
||||||
targets = [ "x86_64-pc-windows-msvc" "x86_64-unknown-linux-gnu" ];
|
targets = [
|
||||||
|
"x86_64-pc-windows-msvc"
|
||||||
|
"x86_64-unknown-linux-gnu"
|
||||||
|
"x86_64-apple-darwin"
|
||||||
|
"aarch64-pc-windows-msvc"
|
||||||
|
"aarch64-unknown-linux-gnu"
|
||||||
|
"aarch64-apple-darwin"
|
||||||
|
];
|
||||||
})
|
})
|
||||||
pkg-config
|
pkg-config
|
||||||
] ++ nativeBuildInputs;
|
] ++ nativeBuildInputs;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue