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