nix-ros-overlay/distros/humble/turtlebot3-navigation2/default.nix

25 lines
775 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, nav2-bringup }:
buildRosPackage {
pname = "ros-humble-turtlebot3-navigation2";
version = "2.2.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3-release/archive/release/humble/turtlebot3_navigation2/2.2.8-1.tar.gz";
name = "2.2.8-1.tar.gz";
sha256 = "927ca34b30c293e6db0fe38523ee0e9383e7119ffe92e6a746120092e51adc1f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ nav2-bringup ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "ROS 2 launch scripts for navigation2";
license = with lib.licenses; [ asl20 ];
};
}