nix-ros-overlay/distros/rolling/moveit-setup-assistant/default.nix

26 lines
1.3 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, moveit-configs-utils, moveit-resources-panda-moveit-config, moveit-setup-app-plugins, moveit-setup-controllers, moveit-setup-core-plugins, moveit-setup-framework, moveit-setup-srdf-plugins, pluginlib, qt5, rclcpp }:
buildRosPackage {
pname = "ros-rolling-moveit-setup-assistant";
version = "2.13.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_setup_assistant/2.13.2-1.tar.gz";
name = "2.13.2-1.tar.gz";
sha256 = "2821a951995b07085faad72ca27c669541649db202865cb7851ae7f132d47629";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest moveit-resources-panda-moveit-config ];
propagatedBuildInputs = [ ament-index-cpp moveit-configs-utils moveit-setup-app-plugins moveit-setup-controllers moveit-setup-core-plugins moveit-setup-framework moveit-setup-srdf-plugins pluginlib qt5.qtbase rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Generates a configuration package that makes it easy to use MoveIt";
license = with lib.licenses; [ bsd3 ];
};
}