1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Mon Jun 19 17:15:22 2023

This commit is contained in:
Ben Wolsieffer 2023-06-19 17:15:23 -04:00
parent 7a2b545ecb
commit 381164fc34
2124 changed files with 35727 additions and 4192 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, cyclonedds, iceoryx-binding-c, rcpputils, rcutils, rmw, rmw-dds-common, rosidl-runtime-c, rosidl-typesupport-introspection-c, rosidl-typesupport-introspection-cpp, tracetools }:
buildRosPackage {
pname = "ros-iron-rmw-cyclonedds-cpp";
version = "1.6.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw_cyclonedds-release/archive/release/iron/rmw_cyclonedds_cpp/1.6.0-2.tar.gz";
name = "1.6.0-2.tar.gz";
sha256 = "a67dcd3f73d823ff8aa2b23a0ebfa784cd621b22095257c6593c528c77a6d5de";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ cyclonedds iceoryx-binding-c rcpputils rcutils rmw rmw-dds-common rosidl-runtime-c rosidl-typesupport-introspection-c rosidl-typesupport-introspection-cpp tracetools ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Implement the ROS middleware interface using Eclipse CycloneDDS in C++.'';
license = with lib.licenses; [ asl20 ];
};
}