From e0f3eb5bc6fc25ffd3a013109f4697ab3784d608 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Wed, 24 Feb 2021 15:02:35 -0500 Subject: [PATCH] graphicsmagick: set full paths to delegates such as ghostscript The --with-frozenpaths is something that we already set unconditionally for imagemagick and imagemagick7. Without it graphicsmagick may not be able to find its runtime dependencies. --- pkgs/applications/graphics/graphicsmagick/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/graphics/graphicsmagick/default.nix b/pkgs/applications/graphics/graphicsmagick/default.nix index 24e064e721b..583dcf7c618 100644 --- a/pkgs/applications/graphics/graphicsmagick/default.nix +++ b/pkgs/applications/graphics/graphicsmagick/default.nix @@ -17,6 +17,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-shared" + "--with-frozenpaths" "--with-quantum-depth=${toString quantumdepth}" "--with-gslib=yes" ];