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/jazzy/plansys2-lifecycle-manager/default.nix

27 lines
1,012 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, lifecycle-msgs, rclcpp, rclcpp-lifecycle }:
buildRosPackage {
pname = "ros-jazzy-plansys2-lifecycle-manager";
version = "2.0.15-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_planning_system-release/archive/release/jazzy/plansys2_lifecycle_manager/2.0.15-1.tar.gz";
name = "2.0.15-1.tar.gz";
sha256 = "81b8d291306f9cff99a81b32992a49ad8e16157a35696f6b6104c0571bdd5f09";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ lifecycle-msgs rclcpp rclcpp-lifecycle ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "A controller/manager for the lifecycle nodes of the ROS2 Planning System";
license = with lib.licenses; [ asl20 ];
};
}