2021-05-28 23:33:17 +00:00
|
|
|
|
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-11-12 13:26:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, boost, cppzmq, ncurses, rclcpp }:
|
2021-05-28 23:33:17 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-galactic-behaviortree-cpp-v3";
|
2021-11-12 13:26:46 +00:00
|
|
|
version = "3.6.0-r1";
|
2021-05-28 23:33:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-12 13:26:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/behaviortree_cpp-release/archive/release/galactic/behaviortree_cpp_v3/3.6.0-1.tar.gz";
|
|
|
|
name = "3.6.0-1.tar.gz";
|
|
|
|
sha256 = "f758f7b28a9bd5c8f320b60f4dde01e4e5824c35d8188e604a6ba5cee3baf810";
|
2021-05-28 23:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2021-11-12 13:26:46 +00:00
|
|
|
propagatedBuildInputs = [ boost cppzmq ncurses rclcpp ];
|
2021-05-28 23:33:17 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package provides the Behavior Trees core library.'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|