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-05-15 12:42:30 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, cppzmq, ncurses, rclcpp }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-behaviortree-cpp-v3";
|
2020-05-15 12:42:30 +00:00
|
|
|
version = "3.5.0-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-15 12:42:30 +00:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/eloquent/behaviortree_cpp_v3/3.5.0-1.tar.gz";
|
|
|
|
name = "3.5.0-1.tar.gz";
|
|
|
|
sha256 = "9f85d3b92b116badb013e199a90b42380d2a04d37844b0a2da947618f04c0207";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
2020-05-15 12:42:30 +00:00
|
|
|
buildType = "catkin";
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|