activitypub/shell.nix

14 lines
169 B
Nix
Raw Normal View History

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