mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2025 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-ros, ament-lint-auto, autoware-cmake, autoware-internal-debug-msgs, autoware-internal-msgs, autoware-lint-common, autoware-utils-system, diagnostic-msgs, rclcpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-humble-autoware-utils-debug";
|
||
|
version = "1.4.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/autoware_utils-release/archive/release/humble/autoware_utils_debug/1.4.0-1.tar.gz";
|
||
|
name = "1.4.0-1.tar.gz";
|
||
|
sha256 = "28eaa59cade629c92cde01f3f2a2156d66c6c30e6fefba1d65868c18bcd4a0ce";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake-auto autoware-cmake ];
|
||
|
checkInputs = [ ament-cmake-ros ament-lint-auto autoware-lint-common ];
|
||
|
propagatedBuildInputs = [ autoware-internal-debug-msgs autoware-internal-msgs autoware-utils-system diagnostic-msgs rclcpp ];
|
||
|
nativeBuildInputs = [ ament-cmake-auto autoware-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = "The autoware_utils_debug package";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|