mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-21 22:50:18 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-lint-common, rcl-lifecycle, ament-cmake-gtest, rosidl-typesupport-cpp, rmw-implementation, lifecycle-msgs, rclcpp, ament-cmake-ros, ament-lint-auto }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-rclcpp-lifecycle";
|
||
|
version = "0.7.7-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/rclcpp-release/archive/release/dashing/rclcpp_lifecycle/0.7.7-1.tar.gz;
|
||
|
sha256 = "d0cf9f34ef2488b8706339c340fc057947a35ba8a36237dd647e7bd64417314f";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ rcl-lifecycle rosidl-typesupport-cpp rmw-implementation lifecycle-msgs rclcpp ];
|
||
|
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
|
||
|
propagatedBuildInputs = [ rcl-lifecycle rosidl-typesupport-cpp rmw-implementation lifecycle-msgs rclcpp ];
|
||
|
nativeBuildInputs = [ ament-cmake-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Package containing a prototype for lifecycle implementation'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|