1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/humble/moveit-setup-controllers/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-index-cpp, ament-lint-auto, moveit-resources-fanuc-moveit-config, moveit-resources-panda-moveit-config, moveit-setup-framework, pluginlib, rclcpp }:
buildRosPackage {
pname = "ros-humble-moveit-setup-controllers";
version = "2.5.3-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/humble/moveit_setup_controllers/2.5.3-1.tar.gz";
name = "2.5.3-1.tar.gz";
sha256 = "d4955e14762f790dbe07fb40734db17f2459e26c7fb2d5b9fcc895ebe7d0c89d";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-clang-format ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto moveit-resources-fanuc-moveit-config moveit-resources-panda-moveit-config ];
propagatedBuildInputs = [ ament-index-cpp moveit-setup-framework pluginlib rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''MoveIt Setup Steps for ROS 2 Control'';
license = with lib.licenses; [ bsdOriginal ];
};
}