2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, backward-ros, control-msgs, control-toolbox, controller-interface, controller-manager, generate-parameter-library, hardware-interface, pluginlib, rclcpp, rclcpp-action, realtime-tools, ros2-control-test-assets }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-parallel-gripper-controller";
|
2024-11-15 13:25:01 +00:00
|
|
|
version = "4.16.0-r1";
|
2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-15 13:25:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_controllers-release/archive/release/rolling/parallel_gripper_controller/4.16.0-1.tar.gz";
|
|
|
|
name = "4.16.0-1.tar.gz";
|
|
|
|
sha256 = "6c41eb6808d01bbdea035ad74571c2fd960bfb30bb1c3ea9e126af5823347207";
|
2024-07-26 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gmock controller-manager ros2-control-test-assets ];
|
|
|
|
propagatedBuildInputs = [ backward-ros control-msgs control-toolbox controller-interface generate-parameter-library hardware-interface pluginlib rclcpp rclcpp-action realtime-tools ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The parallel_gripper_controller package";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|