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, hardware-interface }:
|
2019-11-07 17:17:35 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-industrial-robot-status-interface";
|
|
|
|
version = "0.1.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/gavanderhoorn/industrial_robot_status_controller-release/archive/release/melodic/industrial_robot_status_interface/0.1.2-1.tar.gz";
|
|
|
|
name = "0.1.2-1.tar.gz";
|
|
|
|
sha256 = "27b082bec56d4f649c198ac39b78b9d2932b448f4ab7281ff055f023d4085be8";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ hardware-interface ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Exposes ROS-Industrial's RobotStatus info from hardware_interfaces for consumption by ros_control controllers.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|