1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/simple-actions/default.nix

26 lines
1.2 KiB
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-humble-simple-actions";
version = "0.3.0-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python ];
checkInputs = [ action-tutorials-interfaces 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 ];
};
}