mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2025 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, cascade-lifecycle-msgs, lifecycle-msgs, rclcpp, rclcpp-lifecycle }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-rclcpp-cascade-lifecycle";
|
|
version = "2.0.0-r3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/cascade_lifecycle-release/archive/release/jazzy/rclcpp_cascade_lifecycle/2.0.0-3.tar.gz";
|
|
name = "2.0.0-3.tar.gz";
|
|
sha256 = "09fdf8d914cb9763354d64fc628ab3553d9e3ee83503378590cb579122e1f428";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ cascade-lifecycle-msgs lifecycle-msgs rclcpp rclcpp-lifecycle ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Provides a mechanism to make trees of lifecycle nodes to propagate state changes";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|