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";
|
2024-08-16 13:54:37 +00:00
|
|
|
version = "2.4.2-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-16 13:54:37 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mapviz-release/archive/release/iron/tile_map/2.4.2-1.tar.gz";
|
|
|
|
name = "2.4.2-1.tar.gz";
|
|
|
|
sha256 = "a5c00c4805d366f1aea0f0cbd735d6e13eeaf2f975a1084c8387d9879fc8ccf7";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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 = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Tile map provides a slippy map style interface for visualizing
|
2023-06-19 17:15:23 -04:00
|
|
|
OpenStreetMap and GoogleMap tiles. A mapviz visualization plug-in is also
|
2024-03-23 14:09:26 +00:00
|
|
|
implemented";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|