mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
28 lines
950 B
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.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/ros_comm-release/archive/release/melodic/xmlrpcpp/1.14.10-1.tar.gz";
|
|
name = "1.14.10-1.tar.gz";
|
|
sha256 = "ad3365cd74300bb02ce79735f5c5536df3a87b99e601dff3ab4922ea98474404";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|