mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
868 B
Nix
24 lines
868 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, hardware-interface }:
|
|
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 ];
|
|
};
|
|
}
|