nix-ros-overlay/distros/humble/moveit-setup-srdf-plugins/default.nix

26 lines
1.1 KiB
Nix

# Copyright 2025 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-lint-auto, moveit-resources-fanuc-description, moveit-setup-framework, pluginlib }:
buildRosPackage {
pname = "ros-humble-moveit-setup-srdf-plugins";
version = "2.5.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/humble/moveit_setup_srdf_plugins/2.5.9-1.tar.gz";
name = "2.5.9-1.tar.gz";
sha256 = "05a4a06d45ba0c89b5f7231994d4822478cfaa9670a4a8d37fedccfb08d14d74";
};
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-description ];
propagatedBuildInputs = [ moveit-setup-framework pluginlib ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "SRDF-based plugins for MoveIt Setup Assistant";
license = with lib.licenses; [ bsdOriginal ];
};
}