imgsyn/shell.nix
2026-02-09 16:10:13 +01:00

13 lines
193 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustfmt
cargo
clippy
rustc
ffmpeg
imagemagick
rust-analyzer
cargo-watch
];
}