2023-06-19 17:15:23 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-05-30 13:42:48 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, cppzmq, git, rclcpp, ros-environment, sqlite }:
|
2023-06-19 17:15:23 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-behaviortree-cpp";
|
2025-05-30 13:42:48 +00:00
|
|
|
version = "4.7.1-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-30 13:42:48 +00:00
|
|
|
url = "https://github.com/ros2-gbp/behaviortree_cpp_v4-release/archive/release/humble/behaviortree_cpp/4.7.1-1.tar.gz";
|
|
|
|
name = "4.7.1-1.tar.gz";
|
|
|
|
sha256 = "59a35d439cdafa1b5d4d06faa05b83c880d17303034b84339dc08a30667bc906";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2025-05-30 13:42:48 +00:00
|
|
|
buildInputs = [ ament-cmake git ros-environment ];
|
2023-06-19 17:15:23 -04:00
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
|
|
propagatedBuildInputs = [ ament-index-cpp cppzmq rclcpp sqlite ];
|
2025-05-30 13:42:48 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake git ];
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "This package provides the Behavior Trees core library.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|