14 lines
264 B
Nix
14 lines
264 B
Nix
{ 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 ];
|
|
};
|
|
}
|