nix-ros-overlay/distros/humble/diagnostics/default.nix

26 lines
867 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, diagnostic-aggregator, diagnostic-common-diagnostics, diagnostic-updater, self-test }:
buildRosPackage {
pname = "ros-humble-diagnostics";
version = "4.0.4-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ diagnostic-aggregator diagnostic-common-diagnostics diagnostic-updater self-test ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "diagnostics";
license = with lib.licenses; [ bsd3 ];
};
}