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.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/diagnostics-release/archive/release/humble/diagnostics/4.0.3-1.tar.gz";
name = "4.0.3-1.tar.gz";
sha256 = "e6d7a6bc2f453e989d0e165a3a9a2d9453a478ffef209b00905812a1db4b654c";
};
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 ];
};
}