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

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