mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
12 lines
226 B
Nix
12 lines
226 B
Nix
{ kdeFramework, lib
|
|
, ecm
|
|
, ilmbase
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kimageformats";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ ecm ];
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
|
|
}
|