1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-26 16:45:32 +03:00
nix-ros-overlay/distros/rolling/parameter-traits/default.nix

27 lines
963 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, fmt, rclcpp, rsl, tcb-span, tl-expected }:
buildRosPackage {
pname = "ros-rolling-parameter-traits";
version = "0.3.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/rolling/parameter_traits/0.3.9-1.tar.gz";
name = "0.3.9-1.tar.gz";
sha256 = "7c285c844f52e79f218fae586625880fb191d7cc103cbf4b74c6909f2c418c76";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ fmt rclcpp rsl tcb-span tl-expected ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Functions and types for rclcpp::Parameter";
license = with lib.licenses; [ bsd3 ];
};
}