2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, libyaml, libyaml-vendor, mimick-vendor, osrf-testing-tools-cpp, performance-test-fixture, rcpputils, rcutils, rmw }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-rcl-yaml-param-parser";
|
2023-11-24 13:11:26 +00:00
|
|
|
version = "6.0.4-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-24 13:11:26 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rcl-release/archive/release/iron/rcl_yaml_param_parser/6.0.4-1.tar.gz";
|
|
|
|
name = "6.0.4-1.tar.gz";
|
|
|
|
sha256 = "bf62fb9a0a9e41f820daf7acf67d6d3d32e0a19467ddd647d9cd414dc04e9d39";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common mimick-vendor osrf-testing-tools-cpp performance-test-fixture rcpputils ];
|
|
|
|
propagatedBuildInputs = [ libyaml libyaml-vendor rcutils rmw ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Parse a YAML parameter file and populate the C data structure.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|