1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-27 08:55:33 +03:00
nix-ros-overlay/melodic/xmlrpcpp/default.nix
2019-03-21 00:14:59 -04:00

26 lines
900 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, boost, cpp-common, rostime }:
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";
};
checkInputs = [ boost ];
propagatedBuildInputs = [ rostime cpp-common ];
nativeBuildInputs = [ catkin rostime cpp-common ];
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;
};
}