From 33ba045ee11e28fc691db566f1bda2773bcea6bb Mon Sep 17 00:00:00 2001 From: asonix Date: Sun, 21 Apr 2024 21:02:31 -0500 Subject: [PATCH] Apparently imagemagick needs a shell to delegate to ffmpeg properly --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 95415ee..f14fc71 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ name = "pict-rs"; tag = "latest"; - contents = [ pkgs.tini self.packages.${system}.pict-rs ]; + contents = [ pkgs.tini self.packages.${system}.pict-rs pkgs.bash ]; config = { Entrypoint = [ "/bin/tini" "--" "/bin/pict-rs" ];