nix-ros-overlay/distros/rolling/rmw-fastrtps-shared-cpp/default.nix

27 lines
1.4 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# 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-runtime-c, rosidl-typesupport-introspection-c, rosidl-typesupport-introspection-cpp, tracetools }:
buildRosPackage {
pname = "ros-rolling-rmw-fastrtps-shared-cpp";
version = "8.2.0-r2";
src = fetchurl {
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";
};
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-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 ];
};
}