1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/foxy/rclc-lifecycle/default.nix

26 lines
944 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, lifecycle-msgs, osrf-testing-tools-cpp, rcl-lifecycle, rclc }:
buildRosPackage {
pname = "ros-foxy-rclc-lifecycle";
version = "1.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rclc-release/archive/release/foxy/rclc_lifecycle/1.0.2-1.tar.gz";
name = "1.0.2-1.tar.gz";
sha256 = "c75cac0a9e09f2a2073e621597df14be3e8c3b22ca0c274146fd9ce498a31244";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
propagatedBuildInputs = [ lifecycle-msgs rcl-lifecycle rclc ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''rclc lifecycle convenience methods.'';
license = with lib.licenses; [ asl20 ];
};
}