2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, controller-manager, hardware-interface, pluginlib, rclcpp, rclcpp-lifecycle, ros-environment, webots-ros2-driver }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-webots-ros2-control";
|
|
|
|
version = "1.2.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/webots_ros2-release/archive/release/humble/webots_ros2_control/1.2.3-1.tar.gz";
|
|
|
|
name = "1.2.3-1.tar.gz";
|
|
|
|
sha256 = "cb3ada1689aeda4ee217c373f4d2cb2e3c79fe67622516d52ccfce5230a33092";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-09-19 17:14:06 -04:00
|
|
|
buildInputs = [ ament-cmake ros-environment ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ controller-manager hardware-interface pluginlib rclcpp rclcpp-lifecycle webots-ros2-driver ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ros2_control plugin for Webots'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|