Add runtime deps to shell

This commit is contained in:
asonix 2023-03-11 13:02:20 -06:00
parent cc314c37a6
commit 8e6158732f

View file

@ -28,7 +28,20 @@
};
devShell = with pkgs; mkShell {
nativeBuildInputs = [ cargo cargo-outdated cargo-zigbuild clippy gcc protobuf rust-analyzer rustc rustfmt ];
nativeBuildInputs = [
cargo
cargo-outdated
cargo-zigbuild
clippy
imagemagick
ffmpeg_5-full
gcc
imagemagick
protobuf
rust-analyzer
rustc
rustfmt
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
};