gmt: adoption by the geospatial team (#344941)

This commit is contained in:
Ivan Mincik 2024-10-22 07:21:57 +00:00 committed by GitHub
commit deeb93f8eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -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 ]);
};
}

View File

@ -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 ]);
};
})

View File

@ -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 ]);
};
}

View File

@ -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;
};
}