2020-12-11 13:16:21 +00:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2020-12-11 13:16:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-02-10 13:32:23 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, builtin-interfaces, controller-manager, diff-drive-controller, joint-state-broadcaster, pythonPackages, rclpy, robot-state-publisher, rviz2, tf2-ros, webots-ros2-control, webots-ros2-driver }:
|
2020-12-11 13:16:21 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-webots-ros2-turtlebot";
|
2023-02-10 13:32:23 +00:00
|
|
|
version = "2023.0.2-r1";
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-02-10 13:32:23 +00:00
|
|
|
url = "https://github.com/ros2-gbp/webots_ros2-release/archive/release/foxy/webots_ros2_turtlebot/2023.0.2-1.tar.gz";
|
|
|
|
name = "2023.0.2-1.tar.gz";
|
|
|
|
sha256 = "e19838645807f76ad2f8e73268b36bdf8d3b1f74e68e67c5394762e60d5a7f8b";
|
2020-12-11 13:16:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2023-02-10 13:32:23 +00:00
|
|
|
checkInputs = [ ament-copyright pythonPackages.pytest ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces controller-manager diff-drive-controller joint-state-broadcaster rclpy robot-state-publisher rviz2 tf2-ros webots-ros2-control webots-ros2-driver ];
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''TurtleBot3 Burger robot ROS2 interface for Webots.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|