mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
999 B
Nix
25 lines
999 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, lifecycle-msgs, rclcpp, rclcpp-lifecycle }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-plansys2-lifecycle-manager";
|
|
version = "0.0.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_lifecycle_manager/0.0.5-1.tar.gz";
|
|
name = "0.0.5-1.tar.gz";
|
|
sha256 = "7244fe278ac1db554bbf87a967d38cf3ac0ca298cbeabcfea5e09c2c75e4dc0e";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ lifecycle-msgs rclcpp rclcpp-lifecycle ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''A controller/manager for the lifecycle nodes of the ROS2 Planning System'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|