System/devshells/rust.nix
2024-12-01 10:49:05 +00:00

17 lines
284 B
Nix

{ withSystem, inputs, ... }:
{
perSystem =
{ config, pkgs, ... }:
{
devShells.rust = pkgs.mkShell {
buildInputs = with pkgs; [
# Rust toolchain
clang
rustup
# Faster builds
sccache
];
};
};
}