nix-ros-overlay/distros/humble/joint-trajectory-controller/default.nix

26 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, angles, control-msgs, control-toolbox, controller-interface, controller-manager, hardware-interface, pluginlib, rclcpp, rclcpp-lifecycle, realtime-tools, ros2-control-test-assets, trajectory-msgs }:
buildRosPackage {
pname = "ros-humble-joint-trajectory-controller";
version = "2.12.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_controllers-release/archive/release/humble/joint_trajectory_controller/2.12.0-1.tar.gz";
name = "2.12.0-1.tar.gz";
sha256 = "ea5df195f8eff8f0b2134f633d8666b54e82c93dc1cec89c3bb4a0af940cd9ef";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gmock controller-manager ros2-control-test-assets ];
propagatedBuildInputs = [ angles control-msgs control-toolbox controller-interface hardware-interface pluginlib rclcpp rclcpp-lifecycle realtime-tools trajectory-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Controller for executing joint-space trajectories on a group of joints'';
license = with lib.licenses; [ asl20 ];
};
}