1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/iron/tile-map/default.nix

28 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, glew, jsoncpp, mapviz, pluginlib, qt5, rclcpp, swri-math-util, swri-transform-util, tf2, yaml-cpp }:
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 ];
propagatedBuildInputs = [ glew jsoncpp mapviz pluginlib qt5.qtbase rclcpp swri-math-util swri-transform-util tf2 yaml-cpp ];
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 ];
};
}