nix-ros-overlay/distros/humble/as2-motion-controller/default.nix

26 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, as2-core, as2-motion-reference-handlers, as2-msgs, eigen, gbenchmark, geometry-msgs, pluginlib, rclcpp, yaml-cpp }:
buildRosPackage {
pname = "ros-humble-as2-motion-controller";
version = "1.1.2-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/aerostack2-release/archive/release/humble/as2_motion_controller/1.1.2-2.tar.gz";
name = "1.1.2-2.tar.gz";
sha256 = "9ece4c7766d2fae1fb9e6503eddb6f7f131e6fd89526d5871a43bb08d40cda01";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ as2-core as2-motion-reference-handlers as2-msgs eigen gbenchmark geometry-msgs pluginlib rclcpp yaml-cpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "AS2 Controller Package";
license = with lib.licenses; [ bsd3 ];
};
}