2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-08-08 19:06:13 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, glew, jsoncpp, mapviz, pluginlib, qt5, rclcpp, swri-math-util, swri-transform-util, tf2, yaml-cpp }:
|
2023-06-19 17:15:23 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-tile-map";
|
|
|
|
version = "2.2.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/mapviz-release/archive/release/iron/tile_map/2.2.2-1.tar.gz";
|
|
|
|
name = "2.2.2-1.tar.gz";
|
|
|
|
sha256 = "6dd4c9ae3c6719ccb2f9239007b196f4988731923d416450aaa0eeeaba5fa06b";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2023-08-08 19:06:13 +00:00
|
|
|
propagatedBuildInputs = [ glew jsoncpp mapviz pluginlib qt5.qtbase rclcpp swri-math-util swri-transform-util tf2 yaml-cpp ];
|
2023-06-19 17:15:23 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake qt5.qtbase ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Tile map provides a slippy map style interface for visualizing
|
|
|
|
OpenStreetMap and GoogleMap tiles. A mapviz visualization plug-in is also
|
|
|
|
implemented'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|