mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
Merge pull request #103349 from maksar/master
ruby-modules gem-config: add exif
This commit is contained in:
commit
1ee2dd6dd3
|
@ -25,7 +25,7 @@
|
|||
, cairo, re2, rake, gobject-introspection, gdk-pixbuf, zeromq, czmq, graphicsmagick, libcxx
|
||||
, file, libvirt, glib, vips, taglib, libopus, linux-pam, libidn, protobuf, fribidi, harfbuzz
|
||||
, bison, flex, pango, python3, patchelf, binutils, freetds, wrapGAppsHook, atk
|
||||
, bundler, libsass, libselinux, libsepol, shared-mime-info, libthai, libdatrie
|
||||
, bundler, libsass, libexif, libselinux, libsepol, shared-mime-info, libthai, libdatrie
|
||||
, CoreServices, DarwinTools, cctools
|
||||
}@args:
|
||||
|
||||
|
@ -187,6 +187,11 @@ in
|
|||
buildInputs = [ openssl ];
|
||||
};
|
||||
|
||||
exif = attrs: {
|
||||
buildFlags = [ "--with-exif-dir=${libexif}" ];
|
||||
buildInputs = [ libexif ];
|
||||
};
|
||||
|
||||
ffi = attrs: {
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libffi ];
|
||||
|
|
Loading…
Reference in a new issue