2023-03-17 13:53:56 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-03-17 13:53:56 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, depthai-bridge, depthai-examples, depthai-ros-driver, depthai-ros-msgs, joy-linux, nav2-common, rplidar-ros, teleop-twist-joy, tf2-ros, turtlebot4-description, turtlebot4-diagnostics, turtlebot4-node }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-turtlebot4-bringup";
|
2023-11-24 13:11:26 +00:00
|
|
|
version = "1.0.2-r1";
|
2023-03-17 13:53:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-24 13:11:26 +00:00
|
|
|
url = "https://github.com/ros2-gbp/turtlebot4_robot-release/archive/release/humble/turtlebot4_bringup/1.0.2-1.tar.gz";
|
|
|
|
name = "1.0.2-1.tar.gz";
|
|
|
|
sha256 = "1a27452eb08bdb086e428a383ce2e506c25eb6c8c07fbb79385a7851bb59a8a2";
|
2023-03-17 13:53:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ depthai-bridge depthai-examples depthai-ros-driver depthai-ros-msgs joy-linux nav2-common rplidar-ros teleop-twist-joy tf2-ros turtlebot4-description turtlebot4-diagnostics turtlebot4-node ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Turtlebot4 Robot Bringup'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|