2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rostime, cpp-common, boost }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-xmlrpcpp";
|
|
|
|
version = "1.14.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ros-gbp/ros_comm-release/archive/release/melodic/xmlrpcpp/1.14.3-0.tar.gz;
|
|
|
|
sha256 = "d141854dd4371212f6606bfff6f7a44eb1a0292bbcf64cf29f4fed0c0741bc76";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ rostime cpp-common ];
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ boost ];
|
|
|
|
propagatedBuildInputs = [ rostime cpp-common ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''XmlRpc++ is a C++ implementation of the XML-RPC protocol. This version is
|
|
|
|
heavily modified from the package available on SourceForge in order to
|
|
|
|
support roscpp's threading model. As such, we are maintaining our
|
|
|
|
own fork.'';
|
|
|
|
#license = lib.licenses.LGPL-2.1;
|
|
|
|
};
|
|
|
|
}
|