1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/turtlebot4-navigation/default.nix

26 lines
977 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-python, ament-lint-auto, ament-lint-common, nav2-bringup, nav2-simple-commander, slam-toolbox }:
buildRosPackage {
pname = "ros-jazzy-turtlebot4-navigation";
version = "2.0.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot4-release/archive/release/jazzy/turtlebot4_navigation/2.0.1-1.tar.gz";
name = "2.0.1-1.tar.gz";
sha256 = "4955899c7ea845baaa8337071a4ca1d532e1e681961081037cb40bdc541fd9ef";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ nav2-bringup nav2-simple-commander slam-toolbox ];
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
meta = {
description = "Turtlebot4 Navigation";
license = with lib.licenses; [ asl20 ];
};
}