mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, glew, jsoncpp, libyamlcpp, mapviz, pluginlib, qt5, rclcpp, swri-math-util, swri-transform-util, tf2 }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-tile-map";
|
|
version = "2.1.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/swri-robotics-gbp/mapviz-release/archive/release/eloquent/tile_map/2.1.0-1.tar.gz";
|
|
name = "2.1.0-1.tar.gz";
|
|
sha256 = "40b759109a19edb6f804d548690e0622532e03669f361a0bbc50c6ecaee5f44e";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ glew jsoncpp libyamlcpp mapviz pluginlib qt5.qtbase rclcpp swri-math-util swri-transform-util tf2 ];
|
|
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 ];
|
|
};
|
|
}
|