File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
inherit system ;
23
23
} ;
24
24
25
- toolchain = fenix . packages . ${ system } . toolchainOf {
25
+ rustToolchain = fenix . packages . ${ system } . toolchainOf {
26
26
channel = "1.84" ;
27
27
date = "2025-01-09" ;
28
28
sha256 = "lMLAupxng4Fd9F1oDw8gx+qA0RuF7ou7xhNU8wgs0PU=" ;
29
29
} ;
30
30
31
31
rustPlatform = pkgs . makeRustPlatform {
32
- cargo = toolchain . cargo ;
33
- rustc = toolchain . rustc ;
32
+ cargo = rustToolchain . cargo ;
33
+ rustc = rustToolchain . rustc ;
34
34
} ;
35
35
36
36
cargoToml = builtins . fromTOML ( builtins . readFile ./Cargo.toml ) ;
49
49
50
50
packages = with pkgs ; [
51
51
# Rust toolchain
52
- toolchain . toolchain
52
+ rustToolchain . toolchain
53
53
54
- # Code formatting tools
54
+ # Code formatting
55
55
treefmt
56
56
alejandra
57
57
mdl
58
58
59
59
# Rust dependency linting
60
60
cargo-deny
61
61
62
- # Container image management tool
62
+ # Container image management
63
63
skopeo
64
64
] ;
65
65
You can’t perform that action at this time.
0 commit comments