Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

add geospatial team to maintainers for geospatial packages where I'm a maintainer #288107

Merged
merged 6 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/applications/misc/osmium-tool/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
homepage = "https://osmcode.org/osmium-tool/";
changelog = "https://github.com/osmcode/osmium-tool/blob/v${version}/CHANGELOG.md";
license = with licenses; [ gpl3Plus mit bsd3 ];
maintainers = with maintainers; [ das-g ];
maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
mainProgram = "osmium";
};
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libosmium/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
"https://github.com/osmcode/libosmium/releases/tag/v${version}"
"https://github.com/osmcode/libosmium/blob/v${version}/CHANGELOG.md"
];
maintainers = with maintainers; [ das-g ];
maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
};
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/protozero/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
"https://github.com/mapbox/protozero/releases/tag/v${version}"
"https://github.com/mapbox/protozero/blob/v${version}/CHANGELOG.md"
];
maintainers = with maintainers; [ das-g ];
maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
};
}
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/osmpythontools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ buildPythonPackage rec {
homepage = "https://github.com/mocnik-science/osm-python-tools";
license = licenses.gpl3Only;
changelog = "https://raw.githubusercontent.com/mocnik-science/osm-python-tools/v${version}/version-history.md";
maintainers = with maintainers; [ das-g ];
maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/misc/ili2c/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: {
binaryBytecode # source bundles dependencies as jars
];
license = licenses.lgpl21Plus;
maintainers = [ maintainers.das-g ];
maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
platforms = platforms.linux;
mainProgram = "ili2c";
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/misc/osm2pgsql/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://osm2pgsql.org";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ jglukasik das-g ];
maintainers = with maintainers; teams.geospatial.members ++ [ jglukasik das-g ];
};
})