2022-09-02 14:01:22 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-09-02 14:01:22 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-09-22 13:12:15 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, action-tutorials-interfaces, ament-cmake, ament-cmake-clang-format, ament-cmake-cppcheck, ament-cmake-flake8, ament-cmake-lint-cmake, ament-cmake-pep257, ament-cmake-python, rclcpp, rclcpp-action, rclpy }:
|
2022-09-02 14:01:22 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-simple-actions";
|
2023-09-22 13:12:15 +00:00
|
|
|
version = "0.3.0-r1";
|
2022-09-02 14:01:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-22 13:12:15 +00:00
|
|
|
url = "https://github.com/ros2-gbp/simple_actions-release/archive/release/humble/simple_actions/0.3.0-1.tar.gz";
|
|
|
|
name = "0.3.0-1.tar.gz";
|
|
|
|
sha256 = "4b6c4c9a0988cbca7a445a9092fff6f4aca5f6c01a6a7282fa54ba801eee634b";
|
2022-09-02 14:01:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
2023-09-22 13:12:15 +00:00
|
|
|
checkInputs = [ action-tutorials-interfaces ament-cmake-clang-format ament-cmake-cppcheck ament-cmake-flake8 ament-cmake-lint-cmake ament-cmake-pep257 ];
|
2022-09-02 14:01:22 +00:00
|
|
|
propagatedBuildInputs = [ action-msgs rclcpp rclcpp-action rclpy ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Simple library for using the `rclpy/rclcpp` action libraries'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|