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/rolling/moveit-setup-core-plugins/default.nix

26 lines
960 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-index-cpp, moveit-ros-visualization, moveit-setup-framework, pluginlib, rclcpp, srdfdom, urdf }:
buildRosPackage {
pname = "ros-rolling-moveit-setup-core-plugins";
version = "2.12.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_setup_core_plugins/2.12.0-1.tar.gz";
name = "2.12.0-1.tar.gz";
sha256 = "f2a1fd78ed9fe870e603acaf8ff4da830bd1eb63ef9478edb9fd3db217d78259";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ ament-index-cpp moveit-ros-visualization moveit-setup-framework pluginlib rclcpp srdfdom urdf ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Core (meta) plugins for MoveIt Setup Assistant";
license = with lib.licenses; [ bsd3 ];
};
}