2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-06-12 13:17:24 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, cppzmq, ncurses, rclcpp }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-behaviortree-cpp-v3";
|
2020-06-12 13:17:24 +00:00
|
|
|
version = "3.5.1-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-12 13:17:24 +00:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/eloquent/behaviortree_cpp_v3/3.5.1-1.tar.gz";
|
|
|
|
name = "3.5.1-1.tar.gz";
|
|
|
|
sha256 = "9df335c6a7574b7cb4efc7d3781764f72e9a33e91b7bfaf0c80a37e969061db4";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
2020-05-15 12:42:30 +00:00
|
|
|
buildType = "catkin";
|
2020-06-12 13:17:24 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2020-05-15 12:42:30 +00:00
|
|
|
propagatedBuildInputs = [ cppzmq ncurses rclcpp ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package provides the Behavior Trees core library.'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|