1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/flexbe-behavior-engine/default.nix

25 lines
1,009 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, flexbe-core, flexbe-input, flexbe-mirror, flexbe-msgs, flexbe-onboard, flexbe-states, flexbe-testing, flexbe-widget }:
buildRosPackage {
pname = "ros-rolling-flexbe-behavior-engine";
version = "3.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flexbe_behavior_engine-release/archive/release/rolling/flexbe_behavior_engine/3.0.3-1.tar.gz";
name = "3.0.3-1.tar.gz";
sha256 = "b4c8d9e9a2e6a53bf519db35fb2bc09fb4eb3dd2c864ee3fb68f04419b9999a0";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ flexbe-core flexbe-input flexbe-mirror flexbe-msgs flexbe-onboard flexbe-states flexbe-testing flexbe-widget ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "A meta-package to aggregate all the FlexBE packages";
license = with lib.licenses; [ bsdOriginal ];
};
}