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

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2022 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-humble-nav2-lifecycle-manager";
version = "1.1.0-r2";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_lifecycle_manager/1.1.0-2.tar.gz";
name = "1.1.0-2.tar.gz";
sha256 = "9cd512b7898059289a08173be2e71d3aacf7eece999fbb56c5ad39d9ace95bae";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}