1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-05 04:21:42 +03:00
nix-ros-overlay/distros/humble/generate-parameter-library-example/default.nix

26 lines
1,004 B
Nix
Raw Normal View History

# Copyright 2022 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.2.8-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake-core generate-parameter-library rclcpp rclcpp-components ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Example usage of generate_parameter_library.'';
license = with lib.licenses; [ bsd3 ];
};
}