# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, moveit-core, pluginlib, roscpp }: buildRosPackage { pname = "ros-melodic-moveit-controller-manager-example"; version = "1.0.8-r1"; src = fetchurl { url = "https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_controller_manager_example/1.0.8-1.tar.gz"; name = "1.0.8-1.tar.gz"; sha256 = "7958ff6d3a19cac407e0011e6b1325b4e57a51d3dc31ad5802f4f2243008a652"; }; buildType = "catkin"; propagatedBuildInputs = [ moveit-core pluginlib roscpp ]; nativeBuildInputs = [ catkin ]; meta = { description = ''An example controller manager plugin for MoveIt. This is not functional code.''; license = with lib.licenses; [ bsdOriginal ]; }; }