777bb62b24
Run checks and build archives / build (linux-x86_64) (push) Failing after 2m55s
Run checks and build archives / coverage-and-sonar (push) Successful in 7m25s
Run checks and build archives / build (linux-aarch64) (push) Failing after 3m15s
Run checks and build archives / build (windows-x86_64) (push) Failing after 3m13s
28 lines
351 B
Nix
28 lines
351 B
Nix
{
|
|
pkgs,
|
|
rustVersion,
|
|
}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
(rustVersion.override {
|
|
extensions = [
|
|
"clippy"
|
|
"rust-src"
|
|
"rust-analyzer"
|
|
"rustfmt"
|
|
];
|
|
})
|
|
bacon
|
|
cargo-deny
|
|
cargo-edit
|
|
cargo-nextest
|
|
cargo-tarpaulin
|
|
git-cliff
|
|
just
|
|
typos
|
|
|
|
# for CI
|
|
jq
|
|
];
|
|
}
|