activitypub/shell.nix

14 lines
167 B
Nix

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
rustfmt
rust-analyzer
clippy
];
RUST_BACKTRACE = 1;
}