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

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