2023-02-10 13:32:23 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-02-10 13:32:23 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, diagnostic-aggregator, diagnostic-common-diagnostics, diagnostic-updater, self-test }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-diagnostics";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "4.0.4-r1";
|
2023-02-10 13:32:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/diagnostics-release/archive/release/humble/diagnostics/4.0.4-1.tar.gz";
|
|
|
|
name = "4.0.4-1.tar.gz";
|
|
|
|
sha256 = "3c88367851ca3aa10434c45573bcf48881724b73cd9b97efef473a53726b6a7f";
|
2023-02-10 13:32:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ diagnostic-aggregator diagnostic-common-diagnostics diagnostic-updater self-test ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "diagnostics";
|
2023-02-10 13:32:23 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|