2023-08-12 01:44:44 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-08-12 01:44:44 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, flexbe-core, flexbe-msgs, pythonPackages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-flexbe-input";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "3.0.2-r1";
|
2023-08-12 01:44:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/flexbe_behavior_engine-release/archive/release/iron/flexbe_input/3.0.2-1.tar.gz";
|
|
|
|
name = "3.0.2-1.tar.gz";
|
|
|
|
sha256 = "e8b4a756b8799175f75939df3397e7317adabbf1af15c7634a75cab51889965c";
|
2023-08-12 01:44:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ flexbe-core flexbe-msgs rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "flexbe_input enables to send data to onboard behavior when required.";
|
2023-08-12 01:44:44 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|