about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/frameworks/kimageformats/default.nix
blob: 21c84cb569927c81bc4c38c6923888d9526da0f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  mkKdeDerivation,
  pkg-config,
  libheif,
  libjxl,
  libavif,
  libraw,
  openexr_3,
}:
mkKdeDerivation {
  pname = "kimageformats";

  extraCmakeFlags = ["-DKIMAGEFORMATS_HEIF=1"];
  extraNativeBuildInputs = [pkg-config];
  extraBuildInputs = [libheif libjxl libavif libraw openexr_3];
}