1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/jazzy/flexbe-mirror/default.nix

25 lines
916 B
Nix
Raw Permalink Normal View History

# 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-jazzy-flexbe-mirror";
version = "3.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flexbe_behavior_engine-release/archive/release/jazzy/flexbe_mirror/3.0.3-1.tar.gz";
name = "3.0.3-1.tar.gz";
sha256 = "51dfb0c0b82799870a72edb11187061b46136b80a80c98211b2a9721f5f8fb0a";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ flexbe-core flexbe-msgs rclpy ];
meta = {
description = "flexbe_mirror implements functionality to remotely mirror an executed behavior.";
license = with lib.licenses; [ bsdOriginal ];
};
}