imgsyn/shell.nix
2026-02-09 13:17:27 +01:00

12 lines
177 B
Nix

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