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/rolling/simple-actions/default.nix

27 lines
986 B
Nix
Raw Normal View History

# 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-python, rclcpp, rclcpp-action, rclpy }:
buildRosPackage {
pname = "ros-rolling-simple-actions";
version = "0.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/simple_actions-release/archive/release/rolling/simple_actions/0.4.0-1.tar.gz";
name = "0.4.0-1.tar.gz";
sha256 = "5c8453bcaf24606e5eaf5ebcbc0ea518f27e86611a05ac4af948039526201911";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python ];
checkInputs = [ action-tutorials-interfaces ];
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 ];
};
}