2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-05-02 16:50:22 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, chomp-motion-planner, moveit-common, moveit-core, pluginlib, rsl }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-moveit-chomp-optimizer-adapter";
|
2023-09-15 13:13:19 +00:00
|
|
|
version = "2.8.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-15 13:13:19 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_chomp_optimizer_adapter/2.8.0-2.tar.gz";
|
|
|
|
name = "2.8.0-2.tar.gz";
|
|
|
|
sha256 = "11c513f576dcb336a8950ce896ff6dd6490842f28bab8f2558efa7c70aeca149";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2023-05-02 16:50:22 -04:00
|
|
|
propagatedBuildInputs = [ chomp-motion-planner moveit-common moveit-core pluginlib rsl ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''MoveIt planning request adapter utilizing chomp for solution optimization'';
|
2023-05-02 16:50:22 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
}
|