From 3def589d716c8d3ceb65df7f3170561e6c8ab5f3 Mon Sep 17 00:00:00 2001 From: Augustin Trancart Date: Thu, 26 Sep 2024 12:27:41 +0200 Subject: [PATCH 1/2] gmt: make the geospatial team adopt it --- pkgs/applications/gis/gmt/dcw.nix | 2 +- pkgs/applications/gis/gmt/default.nix | 2 +- pkgs/applications/gis/gmt/gshhg.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/gis/gmt/dcw.nix b/pkgs/applications/gis/gmt/dcw.nix index 8c26be6bb2d4..092e86edcb66 100644 --- a/pkgs/applications/gis/gmt/dcw.nix +++ b/pkgs/applications/gis/gmt/dcw.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { for use by GMT, the Generic Mapping Tools. ''; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ tviti ]; + maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ tviti ]); }; } diff --git a/pkgs/applications/gis/gmt/default.nix b/pkgs/applications/gis/gmt/default.nix index 9eb1bde4266d..2f2528ff5bb9 100644 --- a/pkgs/applications/gis/gmt/default.nix +++ b/pkgs/applications/gis/gmt/default.nix @@ -106,7 +106,7 @@ in stdenv.mkDerivation (finalAttrs: { ''; platforms = lib.platforms.unix; license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ tviti ]; + maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ tviti ]); }; }) diff --git a/pkgs/applications/gis/gmt/gshhg.nix b/pkgs/applications/gis/gmt/gshhg.nix index 62758c71d594..d51f1dbbcb5a 100644 --- a/pkgs/applications/gis/gmt/gshhg.nix +++ b/pkgs/applications/gis/gmt/gshhg.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { Mapping Tools. ''; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ tviti ]; + maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ tviti ]); }; } From 56c1962a9a442715247a0ab0052ac5bd3f68d79b Mon Sep 17 00:00:00 2001 From: Augustin Trancart Date: Sat, 28 Sep 2024 22:42:04 +0200 Subject: [PATCH 2/2] pygmt: adoption by the geospatial team --- pkgs/development/python-modules/pygmt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pygmt/default.nix b/pkgs/development/python-modules/pygmt/default.nix index a5850801030e..73960fec7b17 100644 --- a/pkgs/development/python-modules/pygmt/default.nix +++ b/pkgs/development/python-modules/pygmt/default.nix @@ -67,6 +67,6 @@ buildPythonPackage rec { homepage = "https://github.com/GenericMappingTools/pygmt"; license = licenses.bsd3; changelog = "https://github.com/GenericMappingTools/pygmt/releases/tag/v${version}"; - maintainers = with maintainers; [ sikmir ]; + maintainers = with maintainers; teams.geospatial.members; }; }