12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
20 hash = "sha256-bE6UAUKiorriTgYrqhxbMAN2NEtmV/8IIfF02RUghSI=";
23 outputs = [ "out" "dev" ];
25 sourceRoot = "${src.name}/libgeotiff";
28 "--with-jpeg=${libjpeg.dev}"
29 "--with-zlib=${zlib.dev}"
37 buildInputs = [ libtiff proj ];
39 #hardeningDisable = [ "format" ];
42 description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
43 homepage = "https://github.com/OSGeo/libgeotiff";
44 changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS";
45 license = lib.licenses.mit;
46 maintainers = [lib.maintainers.marcweber];
47 platforms = with lib.platforms; linux ++ darwin;