2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ 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-dynamic-typesupport-fastrtps, rosidl-runtime-c, rosidl-typesupport-introspection-c, rosidl-typesupport-introspection-cpp, tracetools }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-rmw-fastrtps-shared-cpp";
|
2024-02-09 13:42:10 +00:00
|
|
|
version = "7.1.3-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-09 13:42:10 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmw_fastrtps-release/archive/release/iron/rmw_fastrtps_shared_cpp/7.1.3-1.tar.gz";
|
|
|
|
name = "7.1.3-1.tar.gz";
|
|
|
|
sha256 = "33c7f596d86bbea2f31843d59979e1e0e9af9ced279d0245c84abd741462d9b6";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros rosidl-runtime-c ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake fastcdr fastrtps fastrtps-cmake-module rcpputils rcutils rmw rmw-dds-common rosidl-dynamic-typesupport rosidl-dynamic-typesupport-fastrtps rosidl-typesupport-introspection-c rosidl-typesupport-introspection-cpp tracetools ];
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|