mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
14 lines
265 B
Nix
14 lines
265 B
Nix
|
{ callPackage, rust-analyzer, rustfmt, clippy }:
|
||
|
|
||
|
let
|
||
|
mainPkg = callPackage ./default.nix { };
|
||
|
in
|
||
|
mainPkg.overrideAttrs (oa: {
|
||
|
nativeBuildInputs = [
|
||
|
# Additional rust tooling
|
||
|
rust-analyzer
|
||
|
rustfmt
|
||
|
clippy
|
||
|
] ++ (oa.nativeBuildInputs or [ ]);
|
||
|
})
|