2020-12-11 13:16:21 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-12-11 13:16:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-11-12 13:26:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, builtin-interfaces, controller-manager, diff-drive-controller, joint-state-broadcaster, pythonPackages, rclpy, robot-state-publisher, tf2-ros, webots-ros2-control, webots-ros2-driver }:
|
2020-12-11 13:16:21 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-webots-ros2-turtlebot";
|
2022-02-04 13:22:04 +00:00
|
|
|
version = "1.2.2-r1";
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-02-04 13:22:04 +00:00
|
|
|
url = "https://github.com/ros2-gbp/webots_ros2-release/archive/release/foxy/webots_ros2_turtlebot/1.2.2-1.tar.gz";
|
|
|
|
name = "1.2.2-1.tar.gz";
|
|
|
|
sha256 = "c88209c091de023b5178a1004447c0dc92636486a995f706b8e03c01792777b5";
|
2020-12-11 13:16:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
2021-11-12 13:26:46 +00:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces controller-manager diff-drive-controller joint-state-broadcaster rclpy robot-state-publisher 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 ];
|
|
|
|
};
|
|
|
|
}
|