nixpkgs/pkgs/development/libraries/libtiff/default.nix

37 lines
782 B
Nix
Raw Normal View History

{ stdenv
2018-11-27 10:11:03 +00:00
, fetchurl
, pkgconfig
, zlib
, libjpeg
, xz
}:
stdenv.mkDerivation rec {
2019-11-06 16:04:00 +00:00
version = "4.1.0";
pname = "libtiff";
2018-11-27 10:11:03 +00:00
src = fetchurl {
url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
2019-11-06 16:04:00 +00:00
sha256 = "0d46bdvxdiv59lxnb0xz9ywm8arsr6xsapi5s6y6vnys2wjz6aax";
};
outputs = [ "bin" "dev" "out" "man" "doc" ];
2014-08-27 00:14:09 +01:00
2018-11-27 10:11:03 +00:00
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;
};
}