2021-01-22 13:37:51 +00:00
|
|
|
|
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-02-12 13:24:24 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-lint-auto, ament-lint-common, control-msgs, controller-interface, controller-manager, pluginlib, rclcpp, rclcpp-lifecycle, rcutils, ros2-control-test-assets, sensor-msgs }:
|
2021-01-22 13:37:51 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-joint-state-controller";
|
2021-02-12 13:24:24 +00:00
|
|
|
version = "0.2.0-r1";
|
2021-01-22 13:37:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-12 13:24:24 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_controllers-release/archive/release/foxy/joint_state_controller/0.2.0-1.tar.gz";
|
|
|
|
name = "0.2.0-1.tar.gz";
|
|
|
|
sha256 = "c104aed4df9e821871a8ba13a530b27acce3d6e3e086142604f1ac570747ca77";
|
2021-01-22 13:37:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2021-02-12 13:24:24 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common controller-manager rclcpp ros2-control-test-assets ];
|
2021-01-22 13:37:51 +00:00
|
|
|
propagatedBuildInputs = [ control-msgs controller-interface pluginlib rclcpp-lifecycle rcutils sensor-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Controller to publish joint state'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|