about summary refs log tree commit diff
path: root/pkgs/development/libraries/gdal
diff options
context:
space:
mode:
authorIvan Mincik <ivan.mincik@gmail.com>2023-07-03 12:57:12 +0200
committerIvan Mincik <ivan.mincik@gmail.com>2023-07-03 12:57:12 +0200
commitf534b012e6e1ee4a6b111e61f3cdcf65e11c65cc (patch)
treef6420a7e298c512ffc438f7822a8d71851db4697 /pkgs/development/libraries/gdal
parent244bdc0f597880934ff874995d341c294be270d0 (diff)
gdal: add geospatial team to maintainers
Diffstat (limited to 'pkgs/development/libraries/gdal')
-rw-r--r--pkgs/development/libraries/gdal/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix
index 189c6f3a41a66..76ea4de745370 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -205,12 +205,12 @@ stdenv.mkDerivation rec {
 
   __darwinAllowLocalNetworking = true;
 
-  meta = {
+  meta = with lib; {
+    changelog = "https://github.com/OSGeo/gdal/blob/${src.rev}/NEWS.md";
     description = "Translator library for raster geospatial data formats";
     homepage = "https://www.gdal.org/";
-    changelog = "https://github.com/OSGeo/gdal/blob/${src.rev}/NEWS.md";
-    license = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ marcweber dotlambda ];
-    platforms = lib.platforms.unix;
+    license = licenses.mit;
+    maintainers = with maintainers; teams.geospatial.members ++ [ marcweber dotlambda ];
+    platforms = platforms.unix;
   };
 }