summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kimageformats.nix
blob: b711328cf893c8fc74e4331a6bf2146705fc5609 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                    

                           

  
              
                         
                                                        

                                              
                                       
                                                          
 
{
  mkDerivation, lib,
  extra-cmake-modules,
  ilmbase, karchive, qtbase
}:

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