imlib2: add svg and heif support

main
Daniel Nagy 2 years ago
parent 688695bde7
commit 078379eb33
No known key found for this signature in database
GPG Key ID: 1B8E8DCB576FB671
  1. 9
      pkgs/development/libraries/imlib2/default.nix

@ -2,7 +2,7 @@
# Image file formats
, libjpeg, libtiff, giflib, libpng, libwebp
# imlib2 can load images from ID3 tags.
, libid3tag
, libid3tag, librsvg, libheif
, freetype , bzip2, pkg-config
, x11Support ? true, xlibsWrapper ? null
}:
@ -21,8 +21,11 @@ stdenv.mkDerivation rec {
buildInputs = [
libjpeg libtiff giflib libpng libwebp
bzip2 freetype libid3tag
] ++ optional x11Support xlibsWrapper;
bzip2 freetype libid3tag libheif
] ++ optional x11Support xlibsWrapper
# Compilation error on Darwin with librsvg. For more information see:
# https://github.com/NixOS/nixpkgs/pull/166452#issuecomment-1090725613
++ optional (!stdenv.isDarwin) librsvg;
nativeBuildInputs = [ pkg-config ];

Loading…
Cancel
Save