summary refs log tree commit diff
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-20 01:43:43 +0300
committerGitHub <noreply@github.com>2023-06-20 01:43:43 +0300
commit9dc5a7a5132cd46de60f11d5a0218e41c2991017 (patch)
tree95f0f33b7b9d3584f47c5cdeb224a65fe3d0cc05 /pkgs/applications/gis
parentd281bab48c66f0ce6da7927f605d55a6547db33d (diff)
parent925f9e5d8099992d02b065b990ef15ce986293cd (diff)
downloadnixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.tar
nixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.tar.gz
nixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.tar.bz2
nixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.tar.lz
nixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.tar.xz
nixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.tar.zst
nixpkgs-9dc5a7a5132cd46de60f11d5a0218e41c2991017.zip
Merge pull request #238598 from imincik/grass-geospatial-team-maint
grass: change package maintainer to 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 452ee11827c..db3aae01c6b 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;
   };
 }