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