nix-ros-overlay/distros/humble/generate-parameter-library-example-external/default.nix

26 lines
1.1 KiB
Nix

# 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-example, rclcpp, rclcpp-components }:
buildRosPackage {
pname = "ros-humble-generate-parameter-library-example-external";
version = "0.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/humble/generate_parameter_library_example_external/0.4.0-1.tar.gz";
name = "0.4.0-1.tar.gz";
sha256 = "4a7a7dbbcf71f19a16781503de1ebc1e442bc92dd1d64f3efe89f180a08a6404";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake-core generate-parameter-library-example rclcpp rclcpp-components ];
nativeBuildInputs = [ ament-cmake ament-cmake-core ];
meta = {
description = "Example usage of a parameter header generated in another package.";
license = with lib.licenses; [ bsd3 ];
};
}