mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
987 B
Nix
25 lines
987 B
Nix
|
|
# Copyright 2020 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, rcl-lifecycle, rclcpp, rmw, rosidl-typesupport-cpp }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-rclcpp-lifecycle";
|
|
version = "2.0.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rclcpp-release/archive/release/foxy/rclcpp_lifecycle/2.0.0-1.tar.gz";
|
|
name = "2.0.0-1.tar.gz";
|
|
sha256 = "85fd48ecd1138f60d054e08d01eb3b42738bd258146716d1e1ab985ae9dbd3f7";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ lifecycle-msgs rcl-lifecycle rclcpp rmw rosidl-typesupport-cpp ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Package containing a prototype for lifecycle implementation'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|