# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, cppzmq, ncurses, roslib }: buildRosPackage { pname = "ros-melodic-behaviortree-cpp-v3"; version = "3.5.3-r1"; src = fetchurl { 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"; }; buildType = "catkin"; propagatedBuildInputs = [ cppzmq ncurses roslib ]; nativeBuildInputs = [ catkin ]; meta = { description = ''This package provides the Behavior Trees core library.''; license = with lib.licenses; [ mit ]; }; }