2020-03-27 18:49:02 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, diagnostic-msgs, geometry-msgs, message-generation, message-runtime, nav-msgs, pythonPackages, roscpp, rosgraph, rospy, rospy-tutorials, rosservice, rostest, rostopic, sensor-msgs, std-msgs, std-srvs, stereo-msgs, tf2-msgs, trajectory-msgs, visualization-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rosbridge-library";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "0.11.12-r1";
|
2020-03-27 18:49:02 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/RobotWebTools-release/rosbridge_suite-release/archive/release/melodic/rosbridge_library/0.11.12-1.tar.gz";
|
|
|
|
name = "0.11.12-1.tar.gz";
|
|
|
|
sha256 = "5f91da581b1dafb724605d1a5bd439dbd7af3107bf3e673a868fc4d6ea564662";
|
2020-03-27 18:49:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2020-12-11 13:16:21 +00:00
|
|
|
buildInputs = [ message-generation pythonPackages.future ];
|
2020-03-27 18:49:02 -04:00
|
|
|
checkInputs = [ actionlib-msgs diagnostic-msgs nav-msgs rospy-tutorials rostest sensor-msgs std-srvs stereo-msgs tf2-msgs trajectory-msgs visualization-msgs ];
|
|
|
|
propagatedBuildInputs = [ geometry-msgs message-runtime pythonPackages.bson pythonPackages.pillow roscpp rosgraph rospy rosservice rostopic std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The core rosbridge package, responsible for interpreting JSON and performing
|
|
|
|
the appropriate ROS action, like subscribe, publish, call service, and
|
|
|
|
interact with params.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|