# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, controller-interface, forward-command-controller, pluginlib }: buildRosPackage { pname = "ros-melodic-position-controllers"; version = "0.17.2-r1"; src = fetchurl { url = "https://github.com/ros-gbp/ros_controllers-release/archive/release/melodic/position_controllers/0.17.2-1.tar.gz"; name = "0.17.2-1.tar.gz"; sha256 = "ff766d80dd25382f0cb374a6d861fe529df1e78616bff2f7c67055b54278e6d5"; }; buildType = "catkin"; propagatedBuildInputs = [ controller-interface forward-command-controller pluginlib ]; nativeBuildInputs = [ catkin ]; meta = { description = ''position_controllers''; license = with lib.licenses; [ bsdOriginal ]; }; }