summary refs log blame commit diff
path: root/pkgs/development/libraries/ctl/default.nix
blob: 4d30afe6818c22ecf18ba7870aa8f7cada4205ce (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                     
 


                                        
                     
                                 
 
                   
 
                                                            
 
                           

                                                  


                                                    
    
 
                           
 
{ stdenv, callPackage, cmake, pkgconfig, ilmbase, libtiff, openexr }:

let
  source = callPackage ./source.nix { };
in
stdenv.mkDerivation {
  name = "ctl-${source.version}";

  src = source.src;

  buildInputs = [ cmake pkgconfig libtiff ilmbase openexr ];

  meta = with stdenv.lib; {
    description = "Color Transformation Language";
    homepage = http://ampasctl.sourceforge.net;
    license = "A.M.P.A.S";
    platforms = platforms.all;
    maintainers = with maintainers; [ wkennington ];
  };

  passthru.source = source;
}