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-25 13:19:46 +00:00
|
|
|
version = "3.5.3-r1";
|
2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-09-25 13:19:46 +00:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/melodic/behaviortree_cpp_v3/3.5.3-1.tar.gz";
|
|
|
|
name = "3.5.3-1.tar.gz";
|
|
|
|
sha256 = "6fde0c7f8294c20c5b62ac75cf0e5749c07a12b59373c4be3ea0ed3643cf7bbe";
|
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
|
|
|
};
|
|
|
|
}
|