mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
29 lines
1.3 KiB
Nix
29 lines
1.3 KiB
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, message-generation, message-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-visualization-msgs";
|
|
version = "1.12.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/common_msgs-release/archive/release/melodic/visualization_msgs/1.12.8-1.tar.gz";
|
|
name = "1.12.8-1.tar.gz";
|
|
sha256 = "9eb9cb4338fafb1b93c08a7bb029161cdfd700a0d027ff8c48fe02d55b0fedba";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ message-generation ];
|
|
propagatedBuildInputs = [ geometry-msgs message-runtime std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''visualization_msgs is a set of messages used by higher level packages, such as <a href="/wiki/rviz">rviz</a>, that deal in visualization-specific data.
|
|
|
|
The main messages in visualization_msgs is <tt>visualization_msgs/Marker</tt>.
|
|
The marker message is used to send visualization "markers" such as boxes, spheres, arrows, lines, etc. to a visualization environment such as <a href="http:///www.ros.org/wiki/rviz">rviz</a>.
|
|
See the rviz tutorial <a href="http://www.ros.org/wiki/rviz/Tutorials">rviz tutorials</a> for more information.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|