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



         
 
                         





                                                                      
    
 
                                              
 
                                    

                                                                                                
 

                                
                              
 
                           
                                                                                      
                                                 
                               
                               
    
 
{ stdenv
, fetchurl

, pkgconfig

, zlib
, libjpeg
, xz
}:

stdenv.mkDerivation rec {
  version = "4.0.10";
  name = "libtiff-${version}";

  src = fetchurl {
    url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
    sha256 = "1r4np635gr6zlc0bic38dzvxia6iqzcrary4n1ylarzpr8fd2lic";
  };

  outputs = [ "bin" "dev" "out" "man" "doc" ];

  nativeBuildInputs = [ pkgconfig ];

  propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)

  enableParallelBuilding = true;

  doCheck = true; # not cross;

  meta = with stdenv.lib; {
    description = "Library and utilities for working with the TIFF image file format";
    homepage = http://download.osgeo.org/libtiff;
    license = licenses.libtiff;
    platforms = platforms.unix;
  };
}