libtiff: 2018-11-04 -> 4.0.10
This commit is contained in:
parent
a5de78b7d7
commit
ac3b358a8c
@ -1,11 +1,7 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchFromGitLab
|
, fetchurl
|
||||||
|
|
||||||
, pkgconfig
|
, pkgconfig
|
||||||
, autogen
|
|
||||||
, autoconf
|
|
||||||
, automake
|
|
||||||
, libtool
|
|
||||||
|
|
||||||
, zlib
|
, zlib
|
||||||
, libjpeg
|
, libjpeg
|
||||||
@ -13,26 +9,22 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2018-11-04";
|
version = "4.0.10";
|
||||||
name = "libtiff-unstable-${version}";
|
name = "libtiff-${version}";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchurl {
|
||||||
owner = "libtiff";
|
url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
||||||
repo = "libtiff";
|
sha256 = "1r4np635gr6zlc0bic38dzvxia6iqzcrary4n1ylarzpr8fd2lic";
|
||||||
rev = "779e54ca32b09155c10d398227a70038de399d7d";
|
|
||||||
sha256 = "029fmn0rdmb5gxhg83ff9j2zx3qk6wsiaiv554jq26pdc23achsp";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig autogen autoconf automake libtool ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
preConfigure = "./autogen.sh";
|
|
||||||
|
|
||||||
doCheck = true; # not cross;
|
doCheck = true; # not cross;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user