summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kimageformats.nix
blob: 49d66bbcc2c645c37a8d3a540f42ab08000976ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ kdeFramework, lib
, extra-cmake-modules
, ilmbase
}:

kdeFramework {
  name = "kimageformats";
  nativeBuildInputs = [ extra-cmake-modules ];
  NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}