2020-11-25 19:56:04 -05:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-12-11 13:16:21 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, lifecycle-msgs, osrf-testing-tools-cpp, rcl-lifecycle, rclc }:
|
2020-11-25 19:56:04 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-rclc-lifecycle";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "0.1.4-r1";
|
2020-11-25 19:56:04 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/micro-ROS/rclc-release/archive/release/foxy/rclc_lifecycle/0.1.4-1.tar.gz";
|
|
|
|
name = "0.1.4-1.tar.gz";
|
|
|
|
sha256 = "e29ad7b87cde21bf2176a7d720127eaca7c504cc7e0895fd427d702c901a7f02";
|
2020-11-25 19:56:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-12-11 13:16:21 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
|
2020-11-25 19:56:04 -05:00
|
|
|
propagatedBuildInputs = [ lifecycle-msgs rcl-lifecycle rclc ];
|
2020-12-11 13:16:21 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
2020-11-25 19:56:04 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rclc lifecycle convenience methods.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|