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/iron/behaviortree-cpp/default.nix

27 lines
928 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, cppzmq, rclcpp, ros-environment, sqlite }:
buildRosPackage {
pname = "ros-iron-behaviortree-cpp";
version = "4.5.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/behaviortree_cpp_v4-release/archive/release/iron/behaviortree_cpp/4.5.1-2.tar.gz";
name = "4.5.1-2.tar.gz";
sha256 = "a15ad4bc3500432a3448757550a08c342c2f46debdb081c18992d3db005356f5";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ros-environment ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ ament-index-cpp cppzmq rclcpp sqlite ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package provides the Behavior Trees core library.'';
license = with lib.licenses; [ mit ];
};
}