mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
882 B
Nix
25 lines
882 B
Nix
|
|
# Copyright 2024 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-rolling-rti-connext-dds-cmake-module";
|
|
version = "0.19.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rmw_connextdds-release/archive/release/rolling/rti_connext_dds_cmake_module/0.19.0-1.tar.gz";
|
|
name = "0.19.0-1.tar.gz";
|
|
sha256 = "2191de91b4db2f5cc9d29b4d83d1f5d7a9d8f4c9eaae07712ec9ccd1011ae672";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|