psych: add libyaml as build input

Starting with version 5, psych no longer bundles libyaml
(https://github.com/ruby/psych/releases/tag/v5.0.0) and the psych gem
cannot be built.

This adds libyaml as a build input.
This commit is contained in:
Stephen Checkoway 2023-01-28 17:38:32 -05:00
parent ecd4172807
commit cd7476bac9

View file

@ -26,7 +26,7 @@
, file, libvirt, glib, vips, taglib, libopus, linux-pam, libidn, protobuf, fribidi, harfbuzz
, bison, flex, pango, python3, patchelf, binutils, freetds, wrapGAppsHook, atk
, bundler, libsass, libexif, libselinux, libsepol, shared-mime-info, libthai, libdatrie
, CoreServices, DarwinTools, cctools, libtool, discount, exiv2, libmaxminddb
, CoreServices, DarwinTools, cctools, libtool, discount, exiv2, libmaxminddb, libyaml
}@args:
let
@ -544,6 +544,10 @@ in
];
};
psych = attrs: {
buildInputs = [ libyaml ];
};
puma = attrs: {
buildInputs = [ openssl ];
};