2022-08-12 14:45:56 +00:00
|
|
|
|
2024-03-22 13:05:17 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-08-12 14:45:56 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-11-04 13:38:03 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-core, ament-lint-auto, ament-lint-common, generate-parameter-library, rclcpp, rclcpp-components }:
|
2022-08-12 14:45:56 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-generate-parameter-library-example";
|
2024-04-05 13:51:29 +00:00
|
|
|
version = "0.3.8-r3";
|
2022-08-12 14:45:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-04-05 13:51:29 +00:00
|
|
|
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/humble/generate_parameter_library_example/0.3.8-3.tar.gz";
|
|
|
|
name = "0.3.8-3.tar.gz";
|
|
|
|
sha256 = "4ad33761829cd74cc903777f86cb2f1de8f8212e5b3d4f1fcd0cb085415ddda8";
|
2022-08-12 14:45:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2022-08-12 14:45:56 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2022-11-04 13:38:03 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake-core generate-parameter-library rclcpp rclcpp-components ];
|
2022-11-04 19:29:56 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-core ];
|
2022-08-12 14:45:56 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Example usage of generate_parameter_library.";
|
2022-08-12 14:45:56 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|