Skip to content

Commit

Permalink
spatialite_tools: adopt package under geospatial team (#379845)
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik authored Feb 11, 2025
2 parents 4e98e86 + c59f85e commit 02daf3d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
readosm,
sqlite,
testers,
spatialite_tools,
spatialite-tools,
}:

stdenv.mkDerivation rec {
Expand Down Expand Up @@ -53,21 +53,21 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;

passthru.tests.version = testers.testVersion {
package = spatialite_tools;
package = spatialite-tools;
command = "! spatialite_tool --version";
version = "${libspatialite.version}";
};

meta = with lib; {
meta = {
description = "Complete sqlite3-compatible CLI front-end for libspatialite";
homepage = "https://www.gaia-gis.it/fossil/spatialite-tools";
license = with licenses; [
license = with lib.licenses; [
mpl11
gpl2Plus
lgpl21Plus
];
platforms = platforms.unix;
maintainers = with maintainers; [ dotlambda ];
platforms = lib.platforms.unix;
maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ dotlambda ]);
mainProgram = "spatialite_tool";
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,7 @@ mapAliases {
SPAdes = spades; # Added 2024-06-12
spark2014 = gnatprove; # Added 2024-02-25
spatialite_gui = throw "spatialite_gui has been renamed to spatialite-gui"; # Added 2025-01-12
spatialite_tools = throw "spatialite_tools has been renamed to spatialite-tools"; # Added 2025-02-06

# Added 2020-02-10
sourceHanSansPackages = {
Expand Down

0 comments on commit 02daf3d

Please sign in to comment.