2022-07-01 13:51:59 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-07-01 13:51:59 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-04-25 13:38:11 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, geometry-msgs, nav-msgs, rclpy, sensor-msgs, tf-transformations, turtlebot3-msgs, visualization-msgs }:
|
2022-07-01 13:51:59 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-turtlebot3-example";
|
2025-04-25 13:38:11 +00:00
|
|
|
version = "2.2.9-r1";
|
2022-07-01 13:51:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-25 13:38:11 +00:00
|
|
|
url = "https://github.com/ros2-gbp/turtlebot3-release/archive/release/humble/turtlebot3_example/2.2.9-1.tar.gz";
|
|
|
|
name = "2.2.9-1.tar.gz";
|
|
|
|
sha256 = "401905d7d604f3f68035e7c47e2ed0c1cb52779e002a349523dc75dc07ea396f";
|
2022-07-01 13:51:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-04-04 13:36:01 +00:00
|
|
|
propagatedBuildInputs = [ geometry-msgs nav-msgs rclpy sensor-msgs tf-transformations turtlebot3-msgs visualization-msgs ];
|
2022-07-01 13:51:59 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "This package provides four basic examples for TurtleBot3 (i.e., interactive marker, object detection, patrol and position control).";
|
2022-07-01 13:51:59 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|