2022-08-12 14:45:56 +00:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# 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";
|
2022-11-04 13:38:03 +00:00
|
|
|
version = "0.2.8-r1";
|
2022-08-12 14:45:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-11-04 13:38:03 +00:00
|
|
|
url = "https://github.com/PickNikRobotics/generate_parameter_library-release/archive/release/humble/generate_parameter_library_example/0.2.8-1.tar.gz";
|
|
|
|
name = "0.2.8-1.tar.gz";
|
|
|
|
sha256 = "522e88272fdcf8e39d4da3d2b0f0112f00d55e0871cc7bd7ff670bb89b5a1428";
|
2022-08-12 14:45:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
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 ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
2022-08-12 14:45:56 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Example usage of generate_parameter_library.'';
|
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|