2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-auto, ament-lint-auto, boost, geometry-msgs, ouxt-common, rclcpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-boost-geometry-util";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "0.0.1-r3";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/boost_geometry_util-release/archive/release/rolling/boost_geometry_util/0.0.1-3.tar.gz";
|
|
|
|
name = "0.0.1-3.tar.gz";
|
|
|
|
sha256 = "abe4e01f2a23bcc31eb1f897b092a1c8f81d1c928c8290d62f20779f57f10c5b";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-auto ];
|
|
|
|
checkInputs = [ ament-lint-auto ouxt-common ];
|
|
|
|
propagatedBuildInputs = [ boost geometry-msgs rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Utility library for boost geometry'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|