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/xmlrpcpp/default.nix

28 lines
950 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, cpp-common, rostime }:
buildRosPackage {
pname = "ros-melodic-xmlrpcpp";
version = "1.14.11-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_comm-release/archive/release/melodic/xmlrpcpp/1.14.11-1.tar.gz";
name = "1.14.11-1.tar.gz";
sha256 = "118e05e22780e149753b5d2cb4b09a462631e6f83a1132d0c7c6b909bcd4d612";
};
buildType = "catkin";
checkInputs = [ boost ];
propagatedBuildInputs = [ cpp-common rostime ];
nativeBuildInputs = [ catkin ];
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 = with lib.licenses; [ lgpl21 ];
};
}