libgeotiff: add geospatial team to maintainers

+4 -4
+4 -4
pkgs/development/libraries/libgeotiff/default.nix
··· 38 38 39 39 #hardeningDisable = [ "format" ]; 40 40 41 - meta = { 41 + meta = with lib; { 42 42 description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery"; 43 43 homepage = "https://github.com/OSGeo/libgeotiff"; 44 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; 45 + license = licenses.mit; 46 + maintainers = with maintainers; teams.geospatial.members ++ [ marcweber ]; 47 + platforms = with platforms; linux ++ darwin; 48 48 }; 49 49 }