mapnik: make the geospatial team adopt the package (#344613)

This commit is contained in:
Ivan Mincik 2024-09-26 11:51:31 +00:00 committed by GitHub
commit d4cc84c081
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
gitUpdater,
buildPackages,
cmake,
pkg-config,
@ -38,6 +39,8 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
postPatch = ''
substituteInPlace configure \
--replace '$PYTHON scons/scons.py' ${buildPackages.scons}/bin/scons
@ -122,10 +125,13 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Open source toolkit for developing mapping applications";
homepage = "https://mapnik.org";
maintainers = with maintainers; [
hrdinka
hummeltech
];
maintainers =
with maintainers;
teams.geospatial.members
++ [
hrdinka
hummeltech
];
license = licenses.lgpl21Plus;
platforms = platforms.all;
};