2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-12-23 03:41:23 +00:00

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 { 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}"; RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}; };