mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-11 21:06:23 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, as2-core, as2-msgs, behaviortree-cpp-v3, geometry-msgs, nav2-behavior-tree, nav2-msgs, rclcpp, rclcpp-action, sensor-msgs, std-srvs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-as2-behavior-tree";
|
|
version = "1.0.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/aerostack2-release/archive/release/humble/as2_behavior_tree/1.0.0-2.tar.gz";
|
|
name = "1.0.0-2.tar.gz";
|
|
sha256 = "727ce9bf131e9d14068bfcb076761eb732b88b2bae78924a6f17fe79c604b147";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ as2-core as2-msgs behaviortree-cpp-v3 geometry-msgs nav2-behavior-tree nav2-msgs rclcpp rclcpp-action sensor-msgs std-srvs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''AS2 behavior trees'';
|
|
license = with lib.licenses; [ bsd3 ];
|
|
};
|
|
}
|