1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/behaviortree-cpp/default.nix

26 lines
928 B
Nix

# Copyright 2025 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-jazzy-behaviortree-cpp";
version = "4.6.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/behaviortree_cpp_v4-release/archive/release/jazzy/behaviortree_cpp/4.6.2-1.tar.gz";
name = "4.6.2-1.tar.gz";
sha256 = "5b267869a56ef5b41ff62efc9ea3bafe2be50fef6f7f429d8d0955ee816d54a1";
};
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 ];
};
}