nix-ros-overlay/distros/humble/rclcpp-lifecycle/default.nix

26 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2022 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, mimick-vendor, performance-test-fixture, rcl-lifecycle, rclcpp, rcpputils, rcutils, rmw, rosidl-typesupport-cpp, test-msgs }:
buildRosPackage {
pname = "ros-humble-rclcpp-lifecycle";
version = "16.0.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rclcpp-release/archive/release/humble/rclcpp_lifecycle/16.0.1-2.tar.gz";
name = "16.0.1-2.tar.gz";
sha256 = "013af6a45a714030b229149d7e4874909391df7de6d5b67369e0c65d25616c0c";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common mimick-vendor performance-test-fixture rcpputils rcutils test-msgs ];
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 ];
};
}