# Copyright 2025 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-core, ament-lint-auto, ament-lint-common, generate-parameter-library, rclcpp, rclcpp-components }: buildRosPackage { pname = "ros-humble-generate-parameter-library-example"; version = "0.3.9-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/humble/generate_parameter_library_example/0.3.9-1.tar.gz"; name = "0.3.9-1.tar.gz"; sha256 = "90bb73931ee209389927292230da430a762942f590f4c248168a63d39d3a2ef5"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake ]; checkInputs = [ ament-lint-auto ament-lint-common ]; propagatedBuildInputs = [ ament-cmake-core generate-parameter-library rclcpp rclcpp-components ]; nativeBuildInputs = [ ament-cmake ament-cmake-core ]; meta = { description = "Example usage of generate_parameter_library."; license = with lib.licenses; [ bsd3 ]; }; }