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-09-09 15:37:07 -04:00
|
|
|
version = "3.5.2-r1";
|
2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-09-09 15:37:07 -04:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/melodic/behaviortree_cpp_v3/3.5.2-1.tar.gz";
|
|
|
|
name = "3.5.2-1.tar.gz";
|
|
|
|
sha256 = "2804632551a3dff63afc2e96dbaba81a5fe499ce3a729a56ace86c519a3f0e00";
|
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
|
|
|
};
|
|
|
|
}
|