nix-files/hosts/common/programs/imagemagick.nix

14 lines
427 B
Nix

{ pkgs, ... }:
{
sane.programs.imagemagick = {
sandbox.method = "bwrap";
sandbox.wrapperType = "wrappedDerivation";
sandbox.whitelistPwd = true;
sandbox.autodetectCliPaths = "existingFileOrParent"; #< arg formatting is complicated enough that this won't always work.
packageUnwrapped = pkgs.imagemagick.override {
ghostscriptSupport = true;
};
suggestedPrograms = [ "ghostscript" ];
};
}