1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/nav2-lifecycle-manager/default.nix

26 lines
1.2 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-pytest, ament-lint-auto, ament-lint-common, bondcpp, diagnostic-updater, geometry-msgs, lifecycle-msgs, nav2-common, nav2-msgs, nav2-util, rclcpp-action, rclcpp-lifecycle, std-msgs, std-srvs, tf2-geometry-msgs }:
buildRosPackage {
pname = "ros-jazzy-nav2-lifecycle-manager";
version = "1.3.5-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/jazzy/nav2_lifecycle_manager/1.3.5-1.tar.gz";
name = "1.3.5-1.tar.gz";
sha256 = "09203cfcacd428fc80eaa1edfd43d2c08cd43158d4acf425a2c37e510a27d624";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake nav2-common ];
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ bondcpp diagnostic-updater geometry-msgs lifecycle-msgs nav2-msgs nav2-util rclcpp-action rclcpp-lifecycle std-msgs std-srvs tf2-geometry-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "A controller/manager for the lifecycle nodes of the Navigation 2 system";
license = with lib.licenses; [ asl20 ];
};
}