mirror of
https://github.com/RGBCube/dix
synced 2025-07-28 04:07:46 +00:00
flake: switch to nightly rustfmt
This commit is contained in:
parent
5a532c2b82
commit
6384189a18
2 changed files with 31 additions and 1 deletions
11
flake.nix
11
flake.nix
|
@ -4,6 +4,10 @@
|
|||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
systems.url = "github:nix-systems/default";
|
||||
rust-overlay = {
|
||||
url = "github:oxalica/rust-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs: let
|
||||
|
@ -32,13 +36,18 @@
|
|||
(pkgsFor.${system})
|
||||
cargo
|
||||
rustc
|
||||
rustfmt
|
||||
bacon
|
||||
;
|
||||
inherit
|
||||
(pkgsFor.${system}.rustPackages)
|
||||
clippy
|
||||
;
|
||||
|
||||
inherit
|
||||
((pkgsFor.${system}.extend
|
||||
inputs.rust-overlay.overlays.default).rust-bin.nightly.latest)
|
||||
rustfmt
|
||||
;
|
||||
};
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue