mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
29 lines
1.4 KiB
Nix
29 lines
1.4 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, shape-msgs, actionlib-msgs, trajectory-msgs, sensor-msgs, catkin, nav-msgs, diagnostic-msgs, visualization-msgs, geometry-msgs, stereo-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-common-msgs";
|
||
|
version = "1.12.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/common_msgs-release/archive/release/kinetic/common_msgs/1.12.7-0.tar.gz;
|
||
|
sha256 = "d3f95ebbb2236c7deaf64b57c4764fe48e0c667eb6defd5d98c95cd12b50f13d";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ shape-msgs actionlib-msgs trajectory-msgs sensor-msgs nav-msgs diagnostic-msgs visualization-msgs geometry-msgs stereo-msgs ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''common_msgs contains messages that are widely used by other ROS packages.
|
||
|
These includes messages for
|
||
|
actions (<a href="http://wiki.ros.org/actionlib_msgs">actionlib_msgs</a>),
|
||
|
diagnostics (<a href="http://wiki.ros.org/diagnostic_msgs">diagnostic_msgs</a>),
|
||
|
geometric primitives (<a href="http://wiki.ros.org/geometry_msgs">geometry_msgs</a>),
|
||
|
robot navigation (<a href="http://wiki.ros.org/nav_msgs">nav_msgs</a>),
|
||
|
and common sensors (<a href="http://wiki.ros.org/sensor_msgs">sensor_msgs</a>), such as laser range finders, cameras, point clouds.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|