mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
26 lines
1.1 KiB
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-python, ament-lint-auto, ament-lint-common, fmt, generate-parameter-library-py, parameter-traits, rclcpp, rclcpp-lifecycle, rclpy, rsl, tcb-span, tl-expected }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-generate-parameter-library";
|
|
version = "0.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/humble/generate_parameter_library/0.4.0-1.tar.gz";
|
|
name = "0.4.0-1.tar.gz";
|
|
sha256 = "0a8735530fc4f6a862189cb2000f94988f6806beb47e9de484e80667e869b1a2";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ fmt generate-parameter-library-py parameter-traits rclcpp rclcpp-lifecycle rclpy rsl tcb-span tl-expected ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python generate-parameter-library-py ];
|
|
|
|
meta = {
|
|
description = "CMake to generate ROS parameter library.";
|
|
license = with lib.licenses; [ bsd3 ];
|
|
};
|
|
}
|