mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
24 lines
907 B
Nix
24 lines
907 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, python3Packages, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-flexbe-input";
|
|
version = "3.0.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/flexbe_behavior_engine-release/archive/release/rolling/flexbe_input/3.0.3-1.tar.gz";
|
|
name = "3.0.3-1.tar.gz";
|
|
sha256 = "65210af38d436d96c15f7518d11bfb9e580e1fa0006ca98a930efbeb6a1a23b6";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
propagatedBuildInputs = [ flexbe-core flexbe-msgs rclpy ];
|
|
|
|
meta = {
|
|
description = "flexbe_input enables to send data to onboard behavior when required.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|