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/melodic/cob-collision-monitor/default.nix

25 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cob-moveit-config, moveit-ros-move-group, moveit-ros-planning, pluginlib, std-msgs, tf, tf2-ros }:
buildRosPackage {
pname = "ros-melodic-cob-collision-monitor";
version = "0.7.4-r1";
src = fetchurl {
url = "https://github.com/ipa320/cob_manipulation-release/archive/release/melodic/cob_collision_monitor/0.7.4-1.tar.gz";
name = "0.7.4-1.tar.gz";
sha256 = "cd517986e6cd73e71fcd0d03831612f9b9b45fcf3f989585c0ba8e37a8f76a76";
};
buildType = "catkin";
propagatedBuildInputs = [ cob-moveit-config moveit-ros-move-group moveit-ros-planning pluginlib std-msgs tf tf2-ros ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The collision monitor uses the planning scene monitor to read the state of the robot and check it for collision with itselt or the environment. It addition a ground plane is added in any case. Can be used as a stand-aloan node or a move_group capability.'';
license = with lib.licenses; [ asl20 ];
};
}