1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-20 00:50:42 +03:00
nix-ros-overlay/distros/rolling/generate-parameter-library/default.nix

27 lines
1.1 KiB
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-lint-auto, ament-lint-common, fmt, generate-parameter-library-py, parameter-traits, rclcpp, rclcpp-lifecycle, rsl, tcb-span, tl-expected }:
buildRosPackage {
pname = "ros-rolling-generate-parameter-library";
version = "0.3.0-r1";
src = fetchurl {
url = "https://github.com/PickNikRobotics/generate_parameter_library-release/archive/release/rolling/generate_parameter_library/0.3.0-1.tar.gz";
name = "0.3.0-1.tar.gz";
sha256 = "9f89dd2e285abb4d4762ad93d9711451b1c065adf32566a93195e8a5fe9491da";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ fmt generate-parameter-library-py parameter-traits rclcpp rclcpp-lifecycle rsl tcb-span tl-expected ];
nativeBuildInputs = [ ament-cmake generate-parameter-library-py ];
meta = {
description = ''CMake to generate ROS parameter library.'';
license = with lib.licenses; [ bsd3 ];
};
}