1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/moveit-chomp-optimizer-adapter/default.nix

27 lines
1,015 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, chomp-motion-planner, moveit-common, moveit-core, pluginlib }:
buildRosPackage {
pname = "ros-rolling-moveit-chomp-optimizer-adapter";
version = "2.6.0-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/rolling/moveit_chomp_optimizer_adapter/2.6.0-1.tar.gz";
name = "2.6.0-1.tar.gz";
sha256 = "582551651ea3828f39dcde413e00c2b4783f5fba282f2d103958573e1fcf6b2b";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ chomp-motion-planner moveit-common moveit-core pluginlib ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''MoveIt planning request adapter utilizing chomp for solution optimization'';
license = with lib.licenses; [ bsdOriginal ];
};
}