nix-ros-overlay/distros/humble/moveit-kinematics/default.nix

26 lines
1.5 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-lint-auto, ament-lint-common, class-loader, eigen, launch-param-builder, moveit-common, moveit-configs-utils, moveit-core, moveit-msgs, moveit-resources-fanuc-description, moveit-resources-fanuc-moveit-config, moveit-resources-panda-description, moveit-resources-panda-moveit-config, moveit-ros-planning, orocos-kdl-vendor, pluginlib, python3Packages, ros-testing, tf2, tf2-kdl, urdfdom }:
buildRosPackage {
pname = "ros-humble-moveit-kinematics";
version = "2.5.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/humble/moveit_kinematics/2.5.9-1.tar.gz";
name = "2.5.9-1.tar.gz";
sha256 = "5ad46ec790da0f902a6434fe66521143af6832840e2cd9c04f12bc2e11d2b3ff";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common launch-param-builder moveit-configs-utils moveit-resources-fanuc-description moveit-resources-fanuc-moveit-config moveit-resources-panda-description moveit-resources-panda-moveit-config moveit-ros-planning ros-testing ];
propagatedBuildInputs = [ class-loader eigen moveit-common moveit-core moveit-msgs orocos-kdl-vendor pluginlib python3Packages.lxml tf2 tf2-kdl urdfdom ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Package for all inverse kinematics solvers in MoveIt";
license = with lib.licenses; [ bsdOriginal ];
};
}