# Copyright 2025 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, urdf }: buildRosPackage { pname = "ros-humble-turtlebot3-description"; version = "2.2.6-r1"; src = fetchurl { url = "https://github.com/robotis-ros2-release/turtlebot3-release/archive/release/humble/turtlebot3_description/2.2.6-1.tar.gz"; name = "2.2.6-1.tar.gz"; sha256 = "04d1faafcace3fd4f832faaaf7c326fddc4ef32550b278be1e02ebc9c414b7c5"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake ]; propagatedBuildInputs = [ urdf ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = "3D models of the TurtleBot3 for simulation and visualization"; license = with lib.licenses; [ asl20 ]; }; }