Merge pull request #213245 from stevecheckoway/fix-psych-build

psych: add libyaml as build input
This commit is contained in:
Mario Rodas 2023-01-28 19:51:38 -05:00 committed by GitHub
commit 9a3b37a7be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ];
};