# Copyright 2022 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, moveit-core, moveit-planners, moveit-plugins, moveit-ros-move-group, moveit-ros-planning, moveit-ros-planning-interface, moveit-ros-warehouse }: buildRosPackage { pname = "ros-humble-moveit-runtime"; version = "2.5.3-r1"; src = fetchurl { url = "https://github.com/moveit/moveit2-release/archive/release/humble/moveit_runtime/2.5.3-1.tar.gz"; name = "2.5.3-1.tar.gz"; sha256 = "e090ce5ea53fc353d03028b4a70b347595d5a41eb25c2948e571a336e451ff87"; }; buildType = "ament_cmake"; checkInputs = [ ament-lint-auto ament-lint-common ]; propagatedBuildInputs = [ moveit-core moveit-planners moveit-plugins moveit-ros-move-group moveit-ros-planning moveit-ros-planning-interface moveit-ros-warehouse ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''moveit_runtime meta package contains MoveIt packages that are essential for its runtime (e.g. running MoveIt on robots).''; license = with lib.licenses; [ bsdOriginal ]; }; }