1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-22 15:10:16 +03:00
nix-ros-overlay/dashing/nav2-behavior-tree/default.nix

27 lines
1.5 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, nav2-common, behaviortree-cpp, rclcpp-action, lifecycle-msgs, geometry-msgs, ament-cmake-pytest, ament-cmake-gtest, launch, nav2-util, rclcpp, builtin-interfaces, std-srvs, rclcpp-lifecycle, tf2-geometry-msgs, tf2-ros, nav-msgs, std-msgs, ament-lint-common, launch-testing, nav2-msgs, tf2, ament-lint-auto }:
buildRosPackage {
pname = "ros-dashing-nav2-behavior-tree";
version = "0.2.4-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/nav2_behavior_tree/0.2.4-1.tar.gz";
name = "0.2.4-1.tar.gz";
sha256 = "cddf350a79b49593cf7fa22b1b701b199ea24f672165168129dec30ace39be3e";
};
buildType = "ament_cmake";
buildInputs = [ builtin-interfaces std-srvs rclcpp-lifecycle tf2-geometry-msgs nav2-msgs nav2-util tf2-ros nav2-common tf2 nav-msgs behaviortree-cpp rclcpp-action lifecycle-msgs rclcpp std-msgs geometry-msgs ];
checkInputs = [ ament-cmake-pytest ament-lint-common launch-testing ament-cmake-gtest launch ament-lint-auto ];
propagatedBuildInputs = [ builtin-interfaces std-srvs rclcpp-lifecycle tf2-geometry-msgs nav2-msgs nav2-util tf2-ros tf2 nav-msgs behaviortree-cpp rclcpp-action lifecycle-msgs rclcpp std-msgs geometry-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''TODO'';
license = with lib.licenses; [ asl20 ];
};
}