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,25 @@
# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
buildRosPackage {
pname = "ros-iron-rti-connext-dds-cmake-module";
version = "0.14.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw_connextdds-release/archive/release/iron/rti_connext_dds_cmake_module/0.14.1-1.tar.gz";
name = "0.14.1-1.tar.gz";
sha256 = "6a791c1e739329681605006dc8b24ed5e737f031032686434134be6e68efedf2";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Helper module to provide access to RTI products like Connext DDS Professional'';
license = with lib.licenses; [ asl20 ];
};
}