1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/cartesian-interface/default.nix

26 lines
928 B
Nix

# 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";
version = "0.1.4-r1";
src = fetchurl {
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";
};
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 ];
};
}