2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, console-bridge }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-cpp-common";
|
2023-07-07 13:21:03 +00:00
|
|
|
version = "0.7.3-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-07 13:21:03 +00:00
|
|
|
url = "https://github.com/ros-gbp/roscpp_core-release/archive/release/noetic/cpp_common/0.7.3-1.tar.gz";
|
|
|
|
name = "0.7.3-1.tar.gz";
|
|
|
|
sha256 = "94f8dc489e48f8848d861a063f5b3578f585de3c18cd45095976fbc9df44951d";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ boost console-bridge ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "cpp_common contains C++ code for doing things that are not necessarily ROS
|
2020-05-23 15:15:06 -04:00
|
|
|
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.
|
|
|
|
|
2024-03-23 14:09:26 +00:00
|
|
|
This package is a component of <a href=\"http://www.ros.org/wiki/roscpp\">roscpp</a>.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|