2020-09-09 15:37:07 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-09-09 15:37:07 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, catkin, control-msgs, moveit-core, pluginlib, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-moveit-simple-controller-manager";
|
2024-10-11 13:52:59 +00:00
|
|
|
version = "1.1.16-r1";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-11 13:52:59 +00:00
|
|
|
url = "https://github.com/ros-gbp/moveit-release/archive/release/noetic/moveit_simple_controller_manager/1.1.16-1.tar.gz";
|
|
|
|
name = "1.1.16-1.tar.gz";
|
|
|
|
sha256 = "ede8a29274a3f2882eac590afa364e70f9c54b7f91197b08e35014ab4754e419";
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-09-09 15:37:07 -04:00
|
|
|
propagatedBuildInputs = [ actionlib control-msgs moveit-core pluginlib roscpp ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A generic, simple controller manager plugin for MoveIt.";
|
2020-09-09 15:37:07 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|