2020-09-09 15:37:07 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 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";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "1.1.12-r1";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-19 17:15:23 -04:00
|
|
|
url = "https://github.com/ros-gbp/moveit-release/archive/release/noetic/moveit_simple_controller_manager/1.1.12-1.tar.gz";
|
|
|
|
name = "1.1.12-1.tar.gz";
|
|
|
|
sha256 = "90f97b91cece0995eff38c894a148a4fb2d94d956da61d8e8a33a0705521739a";
|
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 = {
|
|
|
|
description = ''A generic, simple controller manager plugin for MoveIt.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|