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

27 lines
1.2 KiB
Nix
Raw Normal View History

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