forked from M-Labs/zynq-rs
flake: add missing attributes on rustc (for nixpkgs-unstable compat)
This commit is contained in:
parent
8c404829ef
commit
12975de2e1
|
@ -16,7 +16,12 @@
|
||||||
targets = [ ];
|
targets = [ ];
|
||||||
};
|
};
|
||||||
rustPlatform = pkgs.makeRustPlatform {
|
rustPlatform = pkgs.makeRustPlatform {
|
||||||
rustc = rust;
|
rustc = rust // {
|
||||||
|
# https://github.com/oxalica/rust-overlay/commit/c48c2d76b68dd9ede0815fec53479375c61af857
|
||||||
|
targetPlatforms = pkgs.lib.platforms.all;
|
||||||
|
tier1TargetPlatforms = pkgs.lib.platforms.all;
|
||||||
|
badTargetPlatforms = [ ];
|
||||||
|
};
|
||||||
cargo = rust;
|
cargo = rust;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue