From 8e6158732f4eaff2dd6894dd7f47db375a304715 Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 11 Mar 2023 13:02:20 -0600 Subject: [PATCH] Add runtime deps to shell --- flake.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8426e76..dcfe59d 100644 --- a/flake.nix +++ b/flake.nix @@ -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}"; };