mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-22 23:10:18 +03:00
26 lines
1.2 KiB
Nix
26 lines
1.2 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, std-srvs, ament-cmake, ament-lint-common, rclcpp-lifecycle, tf2-geometry-msgs, nav2-msgs, nav2-util, nav2-common, lifecycle-msgs, rclcpp-action, std-msgs, ament-lint-auto, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-nav2-lifecycle-manager";
|
||
|
version = "0.2.3-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/nav2_lifecycle_manager/0.2.3-1.tar.gz;
|
||
|
sha256 = "a08fe1bbbdbd191b260104e0afb46ec70489109b93ba4aa07d513c05182c59ea";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ std-srvs rclcpp-lifecycle tf2-geometry-msgs nav2-msgs nav2-util nav2-common lifecycle-msgs rclcpp-action std-msgs geometry-msgs ];
|
||
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ std-srvs rclcpp-lifecycle tf2-geometry-msgs nav2-msgs nav2-util lifecycle-msgs rclcpp-action std-msgs geometry-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A controller/manager for the lifecycle nodes of the Navigation 2 system'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|