nix-ros-overlay/distros/jazzy/flexbe-onboard/default.nix

24 lines
1,023 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, flexbe-core, flexbe-msgs, flexbe-states, launch-ros, launch-testing, python3Packages, rclpy }:
buildRosPackage {
pname = "ros-jazzy-flexbe-onboard";
version = "3.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flexbe_behavior_engine-release/archive/release/jazzy/flexbe_onboard/3.0.3-1.tar.gz";
name = "3.0.3-1.tar.gz";
sha256 = "d3c9d9c001fe78a10d42c75dff659c60f817a675b8b6471452a2b2af5839edaa";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch-testing python3Packages.pytest ];
propagatedBuildInputs = [ flexbe-core flexbe-msgs flexbe-states launch-ros rclpy ];
meta = {
description = "flexbe_onboard implements the robot-side of the behavior engine from where all behaviors are started.";
license = with lib.licenses; [ bsdOriginal ];
};
}