2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, cppzmq, roslib, elfutils, catkin }:
|
2019-04-06 23:23:57 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-behaviortree-cpp-v3";
|
|
|
|
version = "3.0.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/melodic/behaviortree_cpp_v3/3.0.7-0.tar.gz";
|
|
|
|
name = "3.0.7-0.tar.gz";
|
2019-04-06 23:23:57 -04:00
|
|
|
sha256 = "fefe63e715f3e2c0e6b1a9a3b57848639f70576986a4f24d7b88a5d8e838b257";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
|
|
|
buildInputs = [ cppzmq roslib elfutils ];
|
|
|
|
propagatedBuildInputs = [ cppzmq roslib elfutils ];
|
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
|
|
|
};
|
|
|
|
}
|