System/devshells/rust.nix

17 lines
284 B
Nix
Raw Normal View History

{ withSystem, inputs, ... }:
{
perSystem =
{ config, pkgs, ... }:
{
2024-12-01 10:49:05 +00:00
devShells.rust = pkgs.mkShell {
buildInputs = with pkgs; [
# Rust toolchain
clang
rustup
# Faster builds
sccache
];
};
};
}