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/foxy/rclc-lifecycle/default.nix

26 lines
900 B
Nix
Raw Normal View History

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