cratedocs-mcp/shell.nix
Harald Hoyer 0dbbc6a778 add flakes
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2025-05-02 13:08:41 +02:00

11 lines
268 B
Nix

{ clippy, rustfmt, callPackage, rust-analyzer, }:
let mainPkg = callPackage ./default.nix { };
in mainPkg.overrideAttrs (prev: {
nativeBuildInputs = [
# Additional Rust tooling
clippy
rustfmt
rust-analyzer
] ++ (prev.nativeBuildInputs or [ ]);
})