1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/rolling/behaviortree-cpp-v3/default.nix

27 lines
952 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, boost, cppzmq, ncurses, rclcpp, ros-environment }:
buildRosPackage {
pname = "ros-rolling-behaviortree-cpp-v3";
version = "3.8.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/behaviortree_cpp-release/archive/release/rolling/behaviortree_cpp_v3/3.8.4-1.tar.gz";
name = "3.8.4-1.tar.gz";
sha256 = "323d52552e0c385f6d92870fae6a2218f3bb21b8a0151bc1338ac7147fa6cb6c";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ros-environment ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ ament-index-cpp boost cppzmq ncurses rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package provides the Behavior Trees core library.'';
license = with lib.licenses; [ mit ];
};
}