1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/foxy/simple-actions/default.nix
2023-05-02 16:50:22 -04:00

26 lines
1.1 KiB
Nix

# Copyright 2023 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.2-r1";
src = fetchurl {
url = "https://github.com/DLu/simple_actions-release/archive/release/foxy/simple_actions/0.2.2-1.tar.gz";
name = "0.2.2-1.tar.gz";
sha256 = "8e149b31905aeaedd5f08bf7fb5d7addc32884e0b7f47ada770fb988e8636909";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python ];
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 ];
};
}