2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-09-05 23:10:33 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, cppzmq, ament-cmake-gtest, ament-cmake }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-behaviortree-cpp";
|
|
|
|
version = "2.5.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/BehaviorTree/behaviortree_cpp-release/archive/release/dashing/behaviortree_cpp/2.5.2-1.tar.gz";
|
|
|
|
name = "2.5.2-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "efed4ba3082011bfb1cdbb6d71b8475f8c9ed7d6302e087ac7b13cb253d08f20";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-09-05 23:10:33 -04:00
|
|
|
buildInputs = [ cppzmq ];
|
2019-09-04 17:11:04 -04:00
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2019-09-05 23:10:33 -04:00
|
|
|
propagatedBuildInputs = [ cppzmq ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package provides a behavior trees core.'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|