lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 27 lines 824 B view raw
1{ stdenv, fetchurl, libtiff, libjpeg, proj, zlib}: 2 3stdenv.mkDerivation rec { 4 version = "1.4.2"; 5 name = "libgeotiff-${version}"; 6 7 src = fetchurl { 8 url = "http://download.osgeo.org/geotiff/libgeotiff/${name}.tar.gz"; 9 sha256 = "0vjy3bwfhljjx66p9w999i4mdhsf7vjshx29yc3pn5livf5091xd"; 10 }; 11 12 configureFlags = [ 13 "--with-jpeg=${libjpeg.dev}" 14 "--with-zlib=${zlib.dev}" 15 ]; 16 buildInputs = [ libtiff proj ]; 17 18 hardeningDisable = [ "format" ]; 19 20 meta = { 21 description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery"; 22 homepage = https://www.remotesensing.org/geotiff/geotiff.html; 23 license = stdenv.lib.licenses.mit; 24 maintainers = [stdenv.lib.maintainers.marcweber]; 25 platforms = with stdenv.lib.platforms; linux ++ darwin; 26 }; 27}