2019-04-06 23:23:57 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-04-06 23:23:57 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-05-02 01:00:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cppzmq, ncurses, roslib }:
|
2019-04-06 23:23:57 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-behaviortree-cpp-v3";
|
2020-06-12 18:02:43 -04:00
|
|
|
version = "3.5.1-r1";
|
2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-12 18:02:43 -04:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/melodic/behaviortree_cpp_v3/3.5.1-1.tar.gz";
|
|
|
|
name = "3.5.1-1.tar.gz";
|
|
|
|
sha256 = "585f165cbb68a17af048a3e35f4b44d1d057249cfb7739d12ba602ad01a33525";
|
2019-04-06 23:23:57 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2020-05-02 01:00:46 +00:00
|
|
|
propagatedBuildInputs = [ cppzmq ncurses roslib ];
|
2019-04-06 23:23:57 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package provides the Behavior Trees core library.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ mit ];
|
2019-04-06 23:23:57 -04:00
|
|
|
};
|
|
|
|
}
|