nix-ros-overlay/distros/humble/rclc-parameter/default.nix

26 lines
1.2 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-pytest, ament-cmake-ros, ament-lint-auto, ament-lint-common, builtin-interfaces, example-interfaces, osrf-testing-tools-cpp, rcl, rcl-interfaces, rclc, rclcpp, rcutils, rosidl-runtime-c, std-msgs }:
buildRosPackage {
pname = "ros-humble-rclc-parameter";
version = "4.0.2-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/rclc-release/archive/release/humble/rclc_parameter/4.0.2-3.tar.gz";
name = "4.0.2-3.tar.gz";
sha256 = "c0f4abf0ba8f9b1e82e00e0792ab602a596d7f006577a16d998773d87a98e322";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common example-interfaces osrf-testing-tools-cpp rclcpp std-msgs ];
propagatedBuildInputs = [ builtin-interfaces rcl rcl-interfaces rclc rcutils rosidl-runtime-c ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = "Parameter server implementation for micro-ROS nodes";
license = with lib.licenses; [ asl20 ];
};
}