2019-11-07 17:17:35 -05:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-11-07 17:17:35 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, controller-interface, hardware-interface, industrial-msgs, industrial-robot-status-interface, pluginlib, realtime-tools }:
|
2019-11-07 17:17:35 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-industrial-robot-status-controller";
|
|
|
|
version = "0.1.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/gavanderhoorn/industrial_robot_status_controller-release/archive/release/melodic/industrial_robot_status_controller/0.1.2-1.tar.gz";
|
|
|
|
name = "0.1.2-1.tar.gz";
|
|
|
|
sha256 = "89e803b0db1051773ed0cd7c0e8287ed8f1ab406caa7d637479742686311e3a5";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ industrial-robot-status-interface ];
|
|
|
|
propagatedBuildInputs = [ controller-interface hardware-interface industrial-msgs pluginlib realtime-tools ];
|
2019-11-07 17:17:35 -05:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A ros_control controller that reports robot status using the ROS-Industrial RobotStatus message.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|