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