11 lines
258 B
Nix
11 lines
258 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, ilmbase
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kimageformats";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
|
|
}
|