mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
830 B
Nix
23 lines
830 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, pluginlib, control-msgs, catkin, moveit-core, actionlib, roscpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-moveit-simple-controller-manager";
|
||
|
version = "1.0.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_simple_controller_manager/1.0.1-0.tar.gz;
|
||
|
sha256 = "911f5903df3144ae4ae248752b196acb700a83536c1662fd4b0005badf1d7eee";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ moveit-core pluginlib actionlib control-msgs roscpp ];
|
||
|
nativeBuildInputs = [ moveit-core pluginlib actionlib control-msgs catkin roscpp ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A generic, simple controller manager plugin for MoveIt.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|