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/foxy/swri-transform-util/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1.5 KiB
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-python, boost, cv-bridge, diagnostic-msgs, diagnostic-updater, geographic-msgs, geometry-msgs, geos, gps-msgs, launch-xml, libyamlcpp, marti-nav-msgs, pkg-config, proj, python3Packages, rcl-interfaces, rclcpp, rclcpp-components, rclpy, sensor-msgs, swri-math-util, swri-roscpp, tf2, tf2-geometry-msgs, tf2-py, tf2-ros }:
buildRosPackage {
pname = "ros-foxy-swri-transform-util";
version = "3.5.2-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/foxy/swri_transform_util/3.5.2-3.tar.gz";
name = "3.5.2-3.tar.gz";
sha256 = "fb43dbdaec54bea4ec4a18a8fa73eeb8e3e89d97092787dc96787283bf0ee5c3";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python pkg-config ];
propagatedBuildInputs = [ boost cv-bridge diagnostic-msgs diagnostic-updater geographic-msgs geometry-msgs geos gps-msgs launch-xml libyamlcpp marti-nav-msgs proj python3Packages.numpy rcl-interfaces rclcpp rclcpp-components rclpy sensor-msgs swri-math-util swri-roscpp tf2 tf2-geometry-msgs tf2-py tf2-ros ];
nativeBuildInputs = [ ament-cmake ament-cmake-python pkg-config ];
meta = {
description = ''The swri_transform_util package contains utility functions and classes for
transforming between coordinate frames.'';
license = with lib.licenses; [ bsdOriginal ];
};
}