mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
27 lines
1.3 KiB
Nix
27 lines
1.3 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, rcutils, ament-lint-common, ament-cmake, cyclonedds, rosidl-typesupport-introspection-c, rosidl-typesupport-introspection-cpp, rmw, rosidl-generator-c, cyclonedds-cmake-module, ament-lint-auto }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-rmw-cyclonedds-cpp";
|
||
|
version = "0.4.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/rmw_cyclonedds-release/archive/release/eloquent/rmw_cyclonedds_cpp/0.4.4-1.tar.gz";
|
||
|
name = "0.4.4-1.tar.gz";
|
||
|
sha256 = "bb1c808026ad88395096d17f1567fb31207b363fd8eea2f8e12a883cb671e3ab";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ rcutils cyclonedds rosidl-typesupport-introspection-c rosidl-typesupport-introspection-cpp rmw rosidl-generator-c cyclonedds-cmake-module ];
|
||
|
checkInputs = [ ament-lint-common ament-lint-auto ];
|
||
|
propagatedBuildInputs = [ rcutils ament-cmake cyclonedds rosidl-typesupport-introspection-c rosidl-typesupport-introspection-cpp rmw rosidl-generator-c cyclonedds-cmake-module ];
|
||
|
nativeBuildInputs = [ cyclonedds-cmake-module ament-cmake-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Implement the ROS middleware interface using Eclipse CycloneDDS in C++.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|