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-16 13:35:43 +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-rolling-behaviortree-cpp";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "4.7.1-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/behaviortree_cpp_v4-release/archive/release/rolling/behaviortree_cpp/4.7.1-1.tar.gz";
|
|
|
|
name = "4.7.1-1.tar.gz";
|
|
|
|
sha256 = "0e654b4e08d61383ce48ff40dcf5c05129d2e0b99a07f8a8187446d6e7ede773";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2025-05-16 13:35:43 +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-16 13:35:43 +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 ];
|
|
|
|
};
|
|
|
|
}
|