Reformat
This commit is contained in:
parent
ac3825e6f9
commit
29fd118635
22 changed files with 424 additions and 424 deletions
|
@ -1,16 +1,21 @@
|
|||
{ withSystem, inputs, ... }:
|
||||
{
|
||||
perSystem =
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
devShells.rust = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
# Rust toolchain
|
||||
clang
|
||||
rustup
|
||||
# Faster builds
|
||||
sccache
|
||||
];
|
||||
};
|
||||
withSystem,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
perSystem = {
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
devShells.rust = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
# Rust toolchain
|
||||
clang
|
||||
rustup
|
||||
# Faster builds
|
||||
sccache
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue