2020-12-11 13:16:21 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 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";
|
2021-11-12 13:26:46 +00:00
|
|
|
version = "1.1.3-r2";
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-12 13:26:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/webots_ros2-release/archive/release/foxy/webots_ros2_turtlebot/1.1.3-2.tar.gz";
|
|
|
|
name = "1.1.3-2.tar.gz";
|
|
|
|
sha256 = "b042f6142c4aba1c0fc83612edaa6c3113c39e371a51ffee01330021be97c52e";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|