libgeotiff: 1.2.5 -> 1.4.2 (#20190)
This commit is contained in:
parent
baae4be182
commit
4440cf6d81
|
@ -1,14 +1,19 @@
|
|||
{ stdenv, fetchurl, libtiff }:
|
||||
{ stdenv, fetchurl, libtiff, libjpeg, proj, zlib}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libgeotiff-1.2.5";
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.4.2";
|
||||
name = "libgeotiff-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.2.5.tar.gz;
|
||||
sha256 = "0z2yx77pm0zs81hc0b4lwzdd5s0rxcbylnscgq80b649src1fyzj";
|
||||
url = "http://download.osgeo.org/geotiff/libgeotiff/${name}.tar.gz";
|
||||
sha256 = "0vjy3bwfhljjx66p9w999i4mdhsf7vjshx29yc3pn5livf5091xd";
|
||||
};
|
||||
|
||||
buildInputs = [ libtiff ];
|
||||
configureFlags = [
|
||||
"--with-jpeg=${libjpeg.dev}"
|
||||
"--with-zlib=${zlib.dev}"
|
||||
];
|
||||
buildInputs = [ libtiff proj ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
|
|
Loading…
Reference in New Issue