We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 7eb1a42 commit a0e6a89Copy full SHA for a0e6a89
pkgs/applications/graphics/ImageMagick/default.nix
@@ -84,7 +84,9 @@ stdenv.mkDerivation rec {
84
moveToOutput "bin/*-config" "$dev"
85
moveToOutput "lib/ImageMagick-*/config-Q16" "$dev" # includes configure params
86
for file in "$dev"/bin/*-config; do
87
- substituteInPlace "$file" --replace pkg-config \
+ substituteInPlace "$file" --replace "${pkgconfig}/bin/pkg-config -config" \
88
+ ${pkgconfig}/bin/pkg-config
89
+ substituteInPlace "$file" --replace ${pkgconfig}/bin/pkg-config \
90
"PKG_CONFIG_PATH='$dev/lib/pkgconfig' '${pkgconfig}/bin/pkg-config'"
91
done
92
'' + lib.optionalString (ghostscript != null) ''
0 commit comments