1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00

regenerate all distros, Fri May 24 14:00:52 2024

This commit is contained in:
Superflore 2024-05-24 14:00:52 +00:00 committed by Ben Wolsieffer
parent f1c32375c2
commit 6a16c08989
1761 changed files with 35644 additions and 2278 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, fastcdr, fastrtps, fastrtps-cmake-module, osrf-testing-tools-cpp, rcpputils, rcutils, rmw, rmw-dds-common, rmw-fastrtps-shared-cpp, rosidl-dynamic-typesupport, rosidl-dynamic-typesupport-fastrtps, rosidl-runtime-c, rosidl-runtime-cpp, rosidl-typesupport-fastrtps-c, rosidl-typesupport-fastrtps-cpp, test-msgs, tracetools }:
buildRosPackage {
pname = "ros-jazzy-rmw-fastrtps-cpp";
version = "8.4.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw_fastrtps-release/archive/release/jazzy/rmw_fastrtps_cpp/8.4.0-2.tar.gz";
name = "8.4.0-2.tar.gz";
sha256 = "9f675890f5c136ec000ebc96db70764b555a914ae5c436289781b006e9e28dfe";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common osrf-testing-tools-cpp test-msgs ];
propagatedBuildInputs = [ ament-cmake fastcdr fastrtps fastrtps-cmake-module rcpputils rcutils rmw rmw-dds-common rmw-fastrtps-shared-cpp rosidl-dynamic-typesupport rosidl-dynamic-typesupport-fastrtps rosidl-runtime-c rosidl-runtime-cpp rosidl-typesupport-fastrtps-c rosidl-typesupport-fastrtps-cpp tracetools ];
nativeBuildInputs = [ ament-cmake ament-cmake-ros fastrtps-cmake-module ];
meta = {
description = "Implement the ROS middleware interface using eProsima FastRTPS static code generation in C++.";
license = with lib.licenses; [ asl20 ];
};
}