about summary refs log tree commit diff
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorIvan Mincik <ivan.mincik@gmail.com>2023-06-19 17:09:46 +0200
committerIvan Mincik <ivan.mincik@gmail.com>2023-06-19 17:09:46 +0200
commit925f9e5d8099992d02b065b990ef15ce986293cd (patch)
treea6e87696652b242d5085ce3c01f424db46a84877 /pkgs/applications/gis
parentbab203fc27dd008855505dc3188527bd2e13a32c (diff)
grass: change package maintainer to geospatial team
Maintainer change was pre-discussed with @willcohen over email. @willcohen is now
member of Geospatial team.
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/grass/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix
index 452ee11827cbf..db3aae01c6b43 100644
--- a/pkgs/applications/gis/grass/default.nix
+++ b/pkgs/applications/gis/grass/default.nix
@@ -97,11 +97,11 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  meta = {
+  meta = with lib; {
     homepage = "https://grass.osgeo.org/";
     description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
-    license = lib.licenses.gpl2Plus;
-    platforms = lib.platforms.all;
-    maintainers = with lib.maintainers; [ mpickering willcohen ];
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; teams.geospatial.members ++ [ mpickering ];
+    platforms = platforms.all;
   };
 }