2023-05-02 16:50:22 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-05-02 16:50:22 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-02-16 13:29:45 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, as2-msgs, cv-bridge, eigen, geographic-msgs, geographiclib, geometry-msgs, image-transport, nav-msgs, pythonPackages, rclcpp, rclcpp-action, rclcpp-lifecycle, sensor-msgs, std-msgs, std-srvs, tf2, tf2-geometry-msgs, tf2-ros, yaml-cpp }:
|
2023-05-02 16:50:22 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-as2-core";
|
2024-08-16 13:54:37 +00:00
|
|
|
version = "1.1.0-r1";
|
2023-05-02 16:50:22 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-16 13:54:37 +00:00
|
|
|
url = "https://github.com/ros2-gbp/aerostack2-release/archive/release/humble/as2_core/1.1.0-1.tar.gz";
|
|
|
|
name = "1.1.0-1.tar.gz";
|
|
|
|
sha256 = "4f92705c6836bf52f80104755d1b521c7467b94870314bb5a390c761bd5f05ee";
|
2023-05-02 16:50:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-02-09 13:42:10 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
2024-02-16 13:29:45 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake as2-msgs cv-bridge eigen geographic-msgs geographiclib geometry-msgs image-transport nav-msgs pythonPackages.pybind11 rclcpp rclcpp-action rclcpp-lifecycle sensor-msgs std-msgs std-srvs tf2 tf2-geometry-msgs tf2-ros yaml-cpp ];
|
2023-05-02 16:50:22 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Aerostack2 core package which contains the basic classes of the Aerostack2 framework";
|
2023-05-02 16:50:22 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|