mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gen-version-h, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, lifecycle-msgs, osrf-testing-tools-cpp, rcl, rcutils, rmw, rosidl-runtime-c, tracetools }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-rcl-lifecycle";
|
|
version = "10.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcl-release/archive/release/rolling/rcl_lifecycle/10.0.1-1.tar.gz";
|
|
name = "10.0.1-1.tar.gz";
|
|
sha256 = "3b2c123091cf66620061c9a09c1415c5f240815a88ff04b6bb1c949406a6efb7";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-gen-version-h ament-cmake-ros ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
|
|
propagatedBuildInputs = [ lifecycle-msgs rcl rcutils rmw rosidl-runtime-c tracetools ];
|
|
nativeBuildInputs = [ ament-cmake-gen-version-h ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = "Package containing a C-based lifecycle implementation";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|