blob: 26a445a28844ba85d98130c5b7f5d231dac78ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
runCommand,
root,
cargo,
rustfmt,
}:
runCommand "check-rustfmt"
{
nativeBuildInputs = [
cargo
rustfmt
];
}
''
cd ${root}
cargo fmt -- --check
touch $out
''
|