1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/kinetic/cpp-common/default.nix
2019-04-06 20:59:50 -04:00

28 lines
999 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, console-bridge, catkin, boost }:
buildRosPackage {
pname = "ros-kinetic-cpp-common";
version = "0.6.11";
src = fetchurl {
url = https://github.com/ros-gbp/roscpp_core-release/archive/release/kinetic/cpp_common/0.6.11-0.tar.gz;
sha256 = "aa7ac13928f64f5a83e3d1ed935509ed4157730a285043a27802d6006bc12ccc";
};
buildInputs = [ console-bridge boost ];
propagatedBuildInputs = [ console-bridge boost ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''cpp_common contains C++ code for doing things that are not necessarily ROS
related, but are useful for multiple packages. This includes things like
the ROS_DEPRECATED and ROS_FORCE_INLINE macros, as well as code for getting
backtraces.
This package is a component of <a href="http://www.ros.org/wiki/roscpp">roscpp</a>.'';
#license = lib.licenses.BSD;
};
}