13 stdenv.mkDerivation rec {
17 src = fetchFromGitHub {
21 hash = "sha256-FUvWZR5BrGEMnApxCBQBwmmi9NU7Tx6Ziq3mbIxjqfc=";
29 sourceRoot = "${src.name}/libgeotiff";
32 "--with-jpeg=${libjpeg.dev}"
33 "--with-zlib=${zlib.dev}"
46 #hardeningDisable = [ "format" ];
49 description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
50 homepage = "https://github.com/OSGeo/libgeotiff";
51 changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS";
52 license = licenses.mit;
53 maintainers = with maintainers; teams.geospatial.members ++ [ marcweber ];
54 platforms = with platforms; linux ++ darwin;