2022-08-17 00:13:41 +00:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, 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 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-simple-actions";
|
|
|
|
version = "0.2.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/DLu/simple_actions-release/archive/release/foxy/simple_actions/0.2.1-1.tar.gz";
|
|
|
|
name = "0.2.1-1.tar.gz";
|
|
|
|
sha256 = "c842b4e43dd1ecb1950292fab948ef022c182396a252eccd364907245dd19d93";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
2022-08-17 00:13:41 +00:00
|
|
|
checkInputs = [ ament-cmake-clang-format ament-cmake-cppcheck ament-cmake-flake8 ament-cmake-lint-cmake ament-cmake-pep257 ];
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|