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:
parent
cc314c37a6
commit
8e6158732f
1 changed files with 14 additions and 1 deletions
15
flake.nix
15
flake.nix
|
@ -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}";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue