2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-05-10 13:12:06 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gen-version-h, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, libyaml, libyaml-vendor, mimick-vendor, osrf-testing-tools-cpp, performance-test-fixture, rcutils, rmw }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rcl-yaml-param-parser";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "10.2.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rcl-release/archive/release/rolling/rcl_yaml_param_parser/10.2.0-1.tar.gz";
|
|
|
|
name = "10.2.0-1.tar.gz";
|
|
|
|
sha256 = "f3729407a0c21c3494ec55f0857a8810e742ecf0caea061e805885ce412f1e11";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-05-10 13:12:06 +00:00
|
|
|
buildInputs = [ ament-cmake-gen-version-h ament-cmake-ros ];
|
2023-10-06 13:48:50 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common mimick-vendor osrf-testing-tools-cpp performance-test-fixture ];
|
2023-03-17 13:53:56 +00:00
|
|
|
propagatedBuildInputs = [ libyaml libyaml-vendor rcutils rmw ];
|
2024-05-10 13:12:06 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-gen-version-h ament-cmake-ros ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Parse a YAML parameter file and populate the C data structure.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|