ruby/gem-config: add prawn-gmagick

prawn-gmagick is a Prawn extension that uses GraphicsMagick to embed image
formats Prawn's built-in code does not understand (notably WebP). The gem
ships a C extension that links against libGraphicsMagick via pkg-config, so
graphicsmagick and pkg-config must be in scope at build time.
This commit is contained in:
Otavio Salvador
2026-05-20 18:58:21 -03:00
committed by Doron Behar
parent 471c1ab6d2
commit 91745d869e
@@ -892,6 +892,11 @@ in
buildFlags = [ "--without-imlib2-config" ];
};
prawn-gmagick = attrs: {
buildInputs = [ graphicsmagick ];
nativeBuildInputs = [ pkg-config ];
};
psych = attrs: {
buildInputs = [ libyaml ];
};