2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-ros, ament-lint-auto, ament-lint-common, fastcdr, fastrtps, fastrtps-cmake-module, osrf-testing-tools-cpp, rcpputils, rcutils, rmw, rmw-dds-common, rosidl-dynamic-typesupport, rosidl-runtime-c, rosidl-typesupport-introspection-c, rosidl-typesupport-introspection-cpp, tracetools }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rmw-fastrtps-shared-cpp";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "8.2.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmw_fastrtps-release/archive/release/rolling/rmw_fastrtps_shared_cpp/8.2.0-2.tar.gz";
|
|
|
|
name = "8.2.0-2.tar.gz";
|
|
|
|
sha256 = "03156b0ad119f5423da18ab8ee1e67f6e98317fc380e8388d56a4239f486615d";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-05-02 16:50:22 -04:00
|
|
|
buildInputs = [ ament-cmake-ros rosidl-runtime-c ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
|
2024-01-19 13:36:49 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake fastcdr fastrtps fastrtps-cmake-module rcpputils rcutils rmw rmw-dds-common rosidl-dynamic-typesupport rosidl-typesupport-introspection-c rosidl-typesupport-introspection-cpp tracetools ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-ros fastrtps-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Code shared on static and dynamic type support of rmw_fastrtps_cpp.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|