summary refs log tree commit diff
path: root/ripple/shell.nix
blob: 9282613c001fbfaa3e26e0df2fde8beb42c3f4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-FileCopyrightText: V <v@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0

with import ./nix;

mkShell {
  packages = [
    cargo
    cargo-watch
    clippy

    # needed by rust-analyzer
    rustc  # core crate code
    rustfmt  # format-on-save
  ];
}