nix-ros-overlay/distros/rolling/moveit-runtime/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2024 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-perception, moveit-ros-planning, moveit-ros-planning-interface, moveit-ros-warehouse }:
buildRosPackage {
pname = "ros-rolling-moveit-runtime";
version = "2.9.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_runtime/2.9.0-2.tar.gz";
name = "2.9.0-2.tar.gz";
sha256 = "ae8e8fe9cf3e23d34dd0ec845fe3035e0b9ba557d86b4ad9c2313ef851241c57";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ moveit-core moveit-planners moveit-plugins moveit-ros-move-group moveit-ros-perception 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; [ bsd3 ];
};
}