1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/xmlrpcpp/default.nix

30 lines
984 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, cpp-common, catkin, rostime }:
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";
name = "1.14.3-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "d141854dd4371212f6606bfff6f7a44eb1a0292bbcf64cf29f4fed0c0741bc76";
};
buildType = "catkin";
buildInputs = [ cpp-common rostime ];
2019-03-21 00:14:59 -04:00
checkInputs = [ boost ];
propagatedBuildInputs = [ cpp-common rostime ];
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 = with lib.licenses; [ lgpl21 ];
2019-03-21 00:14:59 -04:00
};
}