2018-11-07 07:14:20 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitLab
|
2012-05-15 22:13:46 +01:00
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
, pkgconfig
|
|
|
|
, autogen
|
|
|
|
, autoconf
|
|
|
|
, automake
|
|
|
|
, libtool
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, xz
|
|
|
|
}:
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2018-11-04";
|
|
|
|
name = "libtiff-unstable-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "libtiff";
|
|
|
|
repo = "libtiff";
|
|
|
|
rev = "779e54ca32b09155c10d398227a70038de399d7d";
|
|
|
|
sha256 = "029fmn0rdmb5gxhg83ff9j2zx3qk6wsiaiv554jq26pdc23achsp";
|
|
|
|
};
|
2017-01-18 14:50:58 +00:00
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2014-08-27 00:14:09 +01:00
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autogen autoconf automake libtool ];
|
2013-12-23 17:06:09 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
2009-10-29 14:19:58 +00:00
|
|
|
|
2012-05-15 22:13:46 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2018-01-08 07:19:47 +00:00
|
|
|
doCheck = true; # not cross;
|
2013-12-23 17:06:09 +00:00
|
|
|
|
2014-07-30 17:04:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-29 14:19:58 +00:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2016-11-24 01:33:32 +00:00
|
|
|
homepage = http://download.osgeo.org/libtiff;
|
2014-07-30 17:04:57 +01:00
|
|
|
license = licenses.libtiff;
|
2014-08-12 18:07:05 +01:00
|
|
|
platforms = platforms.unix;
|
2009-10-29 14:19:58 +00:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
}
|