1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/diagnostic-aggregator/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-pytest, ament-cmake-python, ament-lint-auto, ament-lint-common, diagnostic-msgs, launch-testing-ament-cmake, launch-testing-ros, pluginlib, rclcpp, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-rolling-diagnostic-aggregator";
version = "3.1.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/diagnostics-release/archive/release/rolling/diagnostic_aggregator/3.1.2-1.tar.gz";
name = "3.1.2-1.tar.gz";
sha256 = "7d77ea4d6c3995f8c14325e4012f946451c86ef89fc0dda7a585b563379c7966";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python diagnostic-msgs pluginlib rclcpp std-msgs ];
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common launch-testing-ament-cmake launch-testing-ros ];
propagatedBuildInputs = [ rclpy ];
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
meta = {
description = ''diagnostic_aggregator'';
license = with lib.licenses; [ bsd3 ];
};
}