1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/humble/moveit-setup-framework/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-index-cpp, ament-lint-auto, moveit-common, moveit-core, moveit-ros-planning, moveit-ros-visualization, pluginlib, rclcpp, rviz-common, rviz-rendering, srdfdom, urdf }:
buildRosPackage {
pname = "ros-humble-moveit-setup-framework";
version = "2.5.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/humble/moveit_setup_framework/2.5.5-1.tar.gz";
name = "2.5.5-1.tar.gz";
sha256 = "1161dc253ae9148aa06c4a9fc806a91287c6faab88dd5b92cc70b448a7cc0b80";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-clang-format ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto ];
propagatedBuildInputs = [ ament-index-cpp moveit-common moveit-core moveit-ros-planning moveit-ros-visualization pluginlib rclcpp rviz-common rviz-rendering srdfdom urdf ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''C++ Interface for defining setup steps for MoveIt Setup Assistant'';
license = with lib.licenses; [ bsdOriginal ];
};
}