activitypub/shell.nix

14 lines
167 B
Nix
Raw Normal View History

2024-03-21 12:41:02 +01:00
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
rustfmt
rust-analyzer
clippy
];
RUST_BACKTRACE = 1;
}