Skip to content

Commit

Permalink
Merge pull request #288107 from das-g/geospatial-team
Browse files Browse the repository at this point in the history
Add geospatial team to maintainers for geospatial packages where I'm a maintainer
  • Loading branch information
imincik committed Feb 22, 2024
2 parents dd9c7a6 + bdf0b68 commit b58efbc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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 ];
};
})

0 comments on commit b58efbc

Please sign in to comment.