2021-06-25 12:45:04 +00:00
|
|
|
|
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, hardware-interface, roscpp, rosunit }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cartesian-interface";
|
2021-08-20 13:05:11 +00:00
|
|
|
version = "0.1.4-r1";
|
2021-06-25 12:45:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-20 13:05:11 +00:00
|
|
|
url = "https://github.com/UniversalRobots/Universal_Robots_ROS_controllers_cartesian-release/archive/release/melodic/cartesian_interface/0.1.4-1.tar.gz";
|
|
|
|
name = "0.1.4-1.tar.gz";
|
|
|
|
sha256 = "89669ea66a46f73997d10314571970dda7be6ef6b8844593c3668cfdb02491a6";
|
2021-06-25 12:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
checkInputs = [ rosunit ];
|
|
|
|
propagatedBuildInputs = [ geometry-msgs hardware-interface roscpp ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Defines a hardware interface to send Cartesian commands to a robot hardware and read
|
|
|
|
Cartesian states.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|