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

26 lines
1.4 KiB
Nix
Raw Normal View History

# Copyright 2020 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, 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.3.1-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/foxy/swri_transform_util/3.3.1-1.tar.gz";
name = "3.3.1-1.tar.gz";
sha256 = "1b072b1377ba6f8a9b2d357b91b8bd8d5fcfbc262d3d50f2eb8481584d4f87dc";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ boost cv-bridge diagnostic-msgs 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 ];
};
}